static Mat backSubst(Mat w, Mat u, Mat vt, Mat rhs, {Mat? dst}) { dst ??= Mat.empty(); cvRun(() => ccore.cv_SVD_backSubst(w.ref, u.ref, vt.ref, rhs.ref, dst!.ref, ffi.nullptr)); return dst; }