Click or drag to resize

CvInvokeSVBackSubst Method

http://www.emgu.com
Performs a singular value back substitution.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void SVBackSubst(
	IInputArray w,
	IInputArray u,
	IInputArray vt,
	IInputArray rhs,
	IOutputArray dst
)

Parameters

w
Type: Emgu.CVIInputArray
Singular values
u
Type: Emgu.CVIInputArray
Left singular vectors
vt
Type: Emgu.CVIInputArray
Transposed matrix of right singular vectors.
rhs
Type: Emgu.CVIInputArray
Right-hand side of a linear system
dst
Type: Emgu.CVIOutputArray
Found solution of the system.
See Also