diff options
author | Gemma Fardell <gfardell@stfc.ac.uk> | 2019-07-05 16:53:38 +0100 |
---|---|---|
committer | Gemma Fardell <gfardell@stfc.ac.uk> | 2019-07-05 16:53:38 +0100 |
commit | a7cf97017b86f6e7eac9a6e2308b017658e5e4d3 (patch) | |
tree | 52c4b7a4695ec335124fa35483c5fad21d56465b | |
parent | 7a821a53a23cb55e7ba11b80395b3a9c3f6e310d (diff) | |
download | astra-wrapper-a7cf97017b86f6e7eac9a6e2308b017658e5e4d3.tar.gz astra-wrapper-a7cf97017b86f6e7eac9a6e2308b017658e5e4d3.tar.bz2 astra-wrapper-a7cf97017b86f6e7eac9a6e2308b017658e5e4d3.tar.xz astra-wrapper-a7cf97017b86f6e7eac9a6e2308b017658e5e4d3.zip |
Removed PowerMethodNonSquare() call
-rw-r--r-- | Wrappers/Python/ccpi/astra/operators/AstraProjector3DSimple.py | 2 |
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 |