cr.sparse.lop.matrix¶
- cr.sparse.lop.matrix(A, axis=0)[source]¶
Converts a matrix into a linear operator
- Parameters
A (jax.numpy.ndarray) – A real or complex matrix (2D array)
axis (int) – For multi-dimensional array input, the axis along which the linear operator will be applied
- Returns
A linear operator wrapping the matrix
- Return type
Forward operation:
(1)¶\[y = A x\]Adjoint operation:
(2)¶\[y = A^H x = (x^H A)^H\]