Click or drag to resize

SingularValueDecompositionComputeSVD(Matrix, Matrix) 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.LinearAlgebra
Assembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void ComputeSVD(
	Matrix A,
	out Matrix S
)
Request Example View Source

Parameters

A  Matrix
The A matrix.
S  Matrix
The diagonal elements of S are the singular values of A.
See Also