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<float> svd( InArray<float> A, OutArray<float> outU, OutArray<float> outV )
Parameters
- A
- Type: ILNumericsInArraySingle
Input matrix. Size [M,N]. - outU
- Type: ILNumericsOutArraySingle
[Output] Returns left singular vectors of A as columns. Must be non-null on entry. - outV
- Type: ILNumericsOutArraySingle
[Output] Returns right singular vectors of A as rows of matrix V. Must be non-null on entry and will be replaced with new values on return.
Return Value
Type: RetArraySingleSingluar values as real diagonal matrix of same size and precision as A.
Remarks
[ILNumerics Computing Engine]
See Also