backSubstAsync static method
Implementation
static Future<Mat> backSubstAsync(Mat w, Mat u, Mat vt, Mat rhs, {Mat? dst}) async => cvRunAsync(
(callback) => cffi.SVD_backSubst_Async(w.ref, u.ref, vt.ref, rhs.ref, callback),
matCompleter,
);