[SciPy-User] RZ Factorization

Pauli Virtanen pav at iki.fi
Wed Sep 3 15:19:47 EDT 2014


03.09.2014, 18:17, Del Citto Francesco kirjoitti:
[clip]
> It is something I have already done a few years ago in
> Fortran, using some dedicated LAPACK functions, namely:
> 
> DGEQP3
> DTZRZF
> DORMRZ
> DGELSY
> 
> Now, DGEQP3 is already wrapped in SciPy 0.14.0, but the other functions aren't.
[clip]
> Are there plans to include the RZ factorization with a high-level wrapper as done for the QR?

Scipy is a community-driven project, and most often a new feature is
added when someone who needs it or finds it interesting turns up and
implements it.

In this case, both adding the relevant f2py wrappers, and a high-level
rz() function to scipy.linalg seems quite justified. In general, I think
there's no reason to not wrap the whole of LAPACK this way even if there
are no corresponding high-level functions.

Scipy has a workflow for code contributions:

    https://github.com/scipy/scipy/blob/master/HACKING.rst.txt

In case you have some code ready but don't want to integrate it in
Scipy, copypaste it to https://gist.github.com and open an issue in
https://github.com/scipy/scipy/issues with a description on what it
does, and a pointer to the Gist. Someone else with too much time on
their hands may later turn up and take a look.

-- 
Pauli Virtanen




More information about the SciPy-User mailing list