ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Singluar values as real diagonal matrix of same size and precision as A.
Singular value decomposition.
[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<double> svd( InArray<double> A, OutArray<double> outU = null, bool small = false )
Parameters
- A
- Type: ILNumericsInArrayDouble
Input matrix. Size [M,N]. - outU (Optional)
- Type: ILNumericsOutArrayDouble
[Optional, output] Returns left singular vectors of A as columns. Default: (null) do not compute. - small (Optional)
- Type: SystemBoolean
If true: return only first min(M,N) singular values. Reduces outU to size [min(M,N),min(M,N)]. Default: false.
Return Value
Type: RetArrayDoubleSingluar values as real diagonal matrix of same size and precision as A.
Remarks
[ILNumerics Computing Engine]
See Also