diff options
author | epapoutsellis <epapoutsellis@gmail.com> | 2019-06-12 16:48:10 +0100 |
---|---|---|
committer | epapoutsellis <epapoutsellis@gmail.com> | 2019-06-12 16:48:10 +0100 |
commit | e1bc06ae5f5b5557a56bbe70a815623746439e19 (patch) | |
tree | 01a252f93791100501addba39f65331472fa36f1 | |
parent | 41adfb0612ded14bb8565504d312d5c3cbbb27c8 (diff) | |
download | astra-wrapper-e1bc06ae5f5b5557a56bbe70a815623746439e19.tar.gz astra-wrapper-e1bc06ae5f5b5557a56bbe70a815623746439e19.tar.bz2 astra-wrapper-e1bc06ae5f5b5557a56bbe70a815623746439e19.tar.xz astra-wrapper-e1bc06ae5f5b5557a56bbe70a815623746439e19.zip |
fix power method
-rw-r--r-- | Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py b/Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py index ffe4700..618ec96 100644 --- a/Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py +++ b/Wrappers/Python/ccpi/astra/operators/AstraProjectorSimple.py @@ -65,5 +65,5 @@ class AstraProjectorSimple(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 |