fn
lapack_svd_f64
void lapack_svd_f64(const double * A, int m, int n, bool full_matrices, double * U, double * S, double * Vt, int * info)Double-precision SVD via divide-and-conquer. Uses dgesdd_.
References
LAPACK dgesdd_.
Parameters
Aconst double*Row-major input.
m, nintDimensions.
full_matricesboolThin (false) vs full (true) SVD.
U, S, Vtdouble*Output buffers, sized analogously to
lapack_svd_f32.infoint*LAPACK status word.