ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Pseudo inverse of input matrix A
The function returns the pseudo inverse (Moore-Penrose pseudoinverse)
of input matrix A. The return value will be of the same size as A.T.
It will satisfy the following conditions:
Moore-Penrose pseudo inverse of A.
[ILNumerics Computing Engine]
Namespace: ILNumerics
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public static RetArray<fcomplex> pinv( InArray<fcomplex> A, Nullable<fcomplex> tolerance = null )
Parameters
- A
- Type: ILNumericsInArrayfcomplex
Input matrix. - tolerance (Optional)
- Type: SystemNullablefcomplex
[Optional] Tolerance. Default: (null) - use default tolerance (see remarks).
Return Value
Type: RetArrayfcomplexPseudo inverse of input matrix A
Remarks
- A * pinv(A) * A = A
- pinv(A) * A * pinv(A) = pinv(A)
- pinv(A) * A is hermitian.
- A * pinv(A) is hermitian.
- length(A) - the longest dimension of A.
- norm(A) being the largest singular value of A.
- eps - the smallest number greater than one.
[ILNumerics Computing Engine]
See Also
Reference
MathInternal.pinv(InArrayfcomplex, Nullablefcomplex)
MathInternal.svd(InArrayfcomplex)
MathInternal.norm(InArrayfcomplex, Single)