backSubst static method
Implementation
static Mat backSubst(Mat w, Mat u, Mat vt, Mat rhs, {Mat? dst}) {
final pdst = dst?.ptr ?? calloc<cvg.Mat>();
cvRun(() => cffi.SVD_backSubst(w.ref, u.ref, vt.ref, rhs.ref, pdst));
return dst ?? Mat.fromPointer(pdst);
}