Performs singular value back substitution
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void SVBkSb( CvArr W, CvArr U, CvArr V, CvArr B, CvArr X, SVDFlag flags )
Parameters
- W
- Type: OpenCvSharpCvArr
Matrix or vector of singular values. - U
- Type: OpenCvSharpCvArr
Left orthogonal matrix (transposed, perhaps) - V
- Type: OpenCvSharpCvArr
Right orthogonal matrix (transposed, perhaps) - B
- Type: OpenCvSharpCvArr
The matrix to multiply the pseudo-inverse of the original matrix A by. This is the optional parameter. If it is omitted then it is assumed to be an identity matrix of an appropriate size (So X will be the reconstructed pseudo-inverse of A). - X
- Type: OpenCvSharpCvArr
The destination matrix: result of back substitution. - flags
- Type: OpenCvSharpSVDFlag
Operation flags, should match exactly to the flags passed to cvSVD.
See Also