Main Content
pagepinv
Description
computes
the Moore-Penrose pseudoinverse of each page of N-D array B
= pagepinv(A
)A
. Each page
of the output array B
is given by B(:,:,i) =
pinv(A(:,:,i))
.
If A
has more than three dimensions, then
pagepinv
returns an N-D array with the same dimensions, as in
B(:,:,i,j,k) = pinv(A(:,:,i,j,k))
.
Examples
Input Arguments
More About
Tips
Results obtained using
pagepinv
are numerically equivalent to computing the pseudoinverses of each of the same matrices in afor
-loop. However, the two results might differ slightly due to floating-point round-off error.
Extended Capabilities
Version History
Introduced in R2024a