MCPcopy Create free account
hub / github.com/numpy/numpy / call_gelsd

Function call_gelsd

numpy/linalg/umath_linalg.cpp:3698–3711  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3696}
3697
3698static inline fortran_int
3699call_gelsd(GELSD_PARAMS_t<fortran_real> *params)
3700{
3701 fortran_int rv;
3702 LAPACK(sgelsd)(&params->M, &params->N, &params->NRHS,
3703 params->A, &params->LDA,
3704 params->B, &params->LDB,
3705 params->S,
3706 params->RCOND, &params->RANK,
3707 params->WORK, &params->LWORK,
3708 params->IWORK,
3709 &rv);
3710 return rv;
3711}
3712
3713
3714static inline fortran_int

Callers 2

init_gelsdFunction · 0.85
lstsqFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected