|  | SVDBackSubst Method (InputArray, OutputArray) | 
 
            performs back substitution, so that dst is the solution or pseudo-solution of m*dst = rhs, where m is the decomposed matrix
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
 Syntax
Syntaxpublic void BackSubst(
	InputArray rhs,
	OutputArray dst
)
Public Sub BackSubst ( 
	rhs As InputArray,
	dst As OutputArray
)
public:
void BackSubst(
	InputArray^ rhs, 
	OutputArray^ dst
)
member BackSubst : 
        rhs : InputArray * 
        dst : OutputArray -> unit 
Parameters
- rhs
- Type: OpenCvSharpInputArray
 [Missing <param name="rhs"/> documentation for "M:OpenCvSharp.SVD.BackSubst(OpenCvSharp.InputArray,OpenCvSharp.OutputArray)"] 
- dst
- Type: OpenCvSharpOutputArray
 [Missing <param name="dst"/> documentation for "M:OpenCvSharp.SVD.BackSubst(OpenCvSharp.InputArray,OpenCvSharp.OutputArray)"] 
Return Value
Type: 
 See Also
See Also