SingularValueDecompositionComputeSVD(Matrix, Vector) Method |
Computes the singular value decomposition (SVD) of a real
M-by-N matrix A.
The SVD is written
A = U * S * transpose(V)
Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public void ComputeSVD(
Matrix A,
out Vector S
)
Public Sub ComputeSVD (
A As Matrix,
<OutAttribute> ByRef S As Vector
)
Request Example
View SourceParameters
- A Matrix
- The A matrix.
- S Vector
- A vector of singular values.
See Also