You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jacklovell Thanks for filing the issue. I'll take a look, and try to fix it soon. This has to do with how LAPACK returns the computed arrays, with singular values unsorted. The routine tries to arrange them in decreasing order, but I'm clearly doing this incorrectly.
Problem description
Trying to compute the GSVD of a rectangular and a square matrix results in an error when the U matrix is requested:
There is no error if only the V matrix is requested:
There is also no error if both
a
andb
are square. But the error is present ifb
is rectangular anda
is square.If both
a
andb
are rectangular, a different error occurs:Expected output
The GSVD of these two matrices should be successfully computed, since Octave manages with no problem:
Additional details
I'm using Intel MKL 2019, with the mkl 2019.0 and mkl-include 2019.0 packages provided by Anaconda, and Python 3.6.
The text was updated successfully, but these errors were encountered: