bartorch.linop.block

Contents

bartorch.linop.block#

bartorch.linop.block(rows, axis=0)#

A grid of operators, as a block matrix is.

Every operator in a row shares a codomain and every operator in a column shares a domain; the row is hstack() and the rows together are concatenate().

Parameters:
  • rows (sequence of sequence of LinearOperator) – The blocks, row by row. Rows must be the same length.

  • axis (int) – Which axis grows, in the domain within a row and in the codomain between rows.