chainerx.linalg.pinv¶
-
chainerx.linalg.pinv(a, rcond=1e-15)¶ Compute the (Moore-Penrose) pseudo-inverse of a matrix.
Calculate the generalized inverse of a matrix using its singular-value decomposition (SVD) and including all large singular values.
- Parameters
- Returns
The pseudo-inverse of
a.- Return type
Note
The
dtypemust befloat32orfloat64(float16is not supported yet.)See also