scipy.linalg.lapack.dorcsd_lwork#

scipy.linalg.lapack.dorcsd_lwork(m, p, q) = <flapack function dorcsd_lwork>#

Query the workspace dorcsd needs (LAPACK dorcsd with lwork = -1).

The query runs with every factor requested, no transpose and the default sign convention, which is what the .pyf hard-codes.

Parameters:
mint

Order of the partitioned matrix.

pint

Row count of the leading block.

qint

Column count of the leading block.

Returns:
workfloat

Optimal lwork.

infoint

0 on success; if negative, the -info-th argument had an illegal value.