diff options
author | epapoutsellis <epapoutsellis@gmail.com> | 2019-06-12 15:54:13 +0100 |
---|---|---|
committer | epapoutsellis <epapoutsellis@gmail.com> | 2019-06-12 15:54:13 +0100 |
commit | 41adfb0612ded14bb8565504d312d5c3cbbb27c8 (patch) | |
tree | 5e2d2c1b49d4e0e11f9ba1ca2ea00941adb7d965 /Wrappers/Python/ccpi | |
parent | 7933e269363f6a24bc1258bea6779b8bff2c61ac (diff) | |
download | astra-wrapper-41adfb0612ded14bb8565504d312d5c3cbbb27c8.tar.gz astra-wrapper-41adfb0612ded14bb8565504d312d5c3cbbb27c8.tar.bz2 astra-wrapper-41adfb0612ded14bb8565504d312d5c3cbbb27c8.tar.xz astra-wrapper-41adfb0612ded14bb8565504d312d5c3cbbb27c8.zip |
fix power method
Diffstat (limited to 'Wrappers/Python/ccpi')
-rw-r--r-- | Wrappers/Python/ccpi/astra/operators/AstraProjectorMC.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Wrappers/Python/ccpi/astra/operators/AstraProjectorMC.py b/Wrappers/Python/ccpi/astra/operators/AstraProjectorMC.py index 514ffce..9a982a5 100644 --- a/Wrappers/Python/ccpi/astra/operators/AstraProjectorMC.py +++ b/Wrappers/Python/ccpi/astra/operators/AstraProjectorMC.py @@ -67,5 +67,5 @@ class AstraProjectorMC(LinearOperator): def norm(self): x0 = self.volume_geometry.allocate('random') - self.s1, sall, svec = LinearOperator.PowerMethodNonsquare(self, 50, x0) - return self.s1
\ No newline at end of file + self.s1, sall, svec = LinearOperator.PowerMethod(self, 50, x0) + return self.s1 |