Skip to content

Commit

Permalink
Documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
MargaretDuff committed Nov 7, 2023
1 parent 1eea20b commit 8de3bd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Wrappers/Python/cil/optimisation/operators/BlockOperator.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ class BlockOperator(Operator):
BlockOperators have a generic shape M x N, and when applied on an
Nx1 BlockDataContainer, will yield and Mx1 BlockDataContainer.
Notice: BlockDatacontainer are only allowed to have the shape of N x 1, with
Note
-----
BlockDatacontainer are only allowed to have the shape of N x 1, with
N rows and 1 column.
User may specify the shape of the block, by default is a row vector
Expand Down Expand Up @@ -299,6 +302,7 @@ def get_output_shape(self, xshape, adjoint=False):
Examples
--------
A(N,M) direct u(M,1) -> N,1
A(N,M)^T adjoint u(N,1) -> M,1
'''
rows, cols = self.shape
Expand Down
2 changes: 1 addition & 1 deletion Wrappers/Python/cil/optimisation/operators/Operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def norm(self, **kwargs):
def set_norm(self, norm=None):
'''Sets the norm of the operator to a custom value.
Parameter
Parameters
---------
norm: Positive real valued number of `None`
Expand Down

0 comments on commit 8de3bd6

Please sign in to comment.