diff options
| -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 | 
