summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgfardell <47746591+gfardell@users.noreply.github.com>2019-07-05 17:05:49 +0100
committerGitHub <noreply@github.com>2019-07-05 17:05:49 +0100
commita6ef951c12daeaefe1c9e77198d0bedd653e7342 (patch)
tree52c4b7a4695ec335124fa35483c5fad21d56465b
parent7a821a53a23cb55e7ba11b80395b3a9c3f6e310d (diff)
parenta7cf97017b86f6e7eac9a6e2308b017658e5e4d3 (diff)
downloadastra-wrapper-a6ef951c12daeaefe1c9e77198d0bedd653e7342.tar.gz
astra-wrapper-a6ef951c12daeaefe1c9e77198d0bedd653e7342.tar.bz2
astra-wrapper-a6ef951c12daeaefe1c9e77198d0bedd653e7342.tar.xz
astra-wrapper-a6ef951c12daeaefe1c9e77198d0bedd653e7342.zip
Merge pull request #28 from vais-ral/AstraProjector3D_Fix
Removed PowerMethodNonSquare() call
-rw-r--r--Wrappers/Python/ccpi/astra/operators/AstraProjector3DSimple.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Wrappers/Python/ccpi/astra/operators/AstraProjector3DSimple.py b/Wrappers/Python/ccpi/astra/operators/AstraProjector3DSimple.py
index 8ba7684..fabfe33 100644
--- a/Wrappers/Python/ccpi/astra/operators/AstraProjector3DSimple.py
+++ b/Wrappers/Python/ccpi/astra/operators/AstraProjector3DSimple.py
@@ -64,5 +64,5 @@ class AstraProjector3DSimple(LinearOperator):
def norm(self):
x0 = self.volume_geometry.allocate('random')
- self.s1, sall, svec = LinearOperator.PowerMethodNonsquare(self, 50, x0)
+ self.s1, sall, svec = LinearOperator.PowerMethod(self, 50, x0)
return self.s1 \ No newline at end of file