Click or drag to resize

SvdT Constructor

Initializes a new instance of the SvdT class.

Namespace: Altaxo.Calc.LinearAlgebra.Factorization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
protected Svd(
	Vector<T> s,
	Matrix<T> u,
	Matrix<T> vt,
	bool vectorsComputed
)

Parameters

s  VectorT
The singular values.
u  MatrixT
The left singular vectors.
vt  MatrixT
The transposed right singular vectors.
vectorsComputed  Boolean
Whether the singular vectors were computed.
See Also