[bug #67740] ordschur - new forms of 3rd argument
"Dmitri A. Sergatskov" <[email protected]>
| Newsgroups | gmane.comp.gnu.octave.bugs |
|---|---|
| Message-ID | <[email protected]> |
Please use the bug tracker to post updates to a bug report. The mailing list is intended as a read-only notification stream. Info posted to this mailing list address won't appear in the tracker database where it is most useful.
Follow-up Comment #12, bug #67740 (group octave):
As far as I can tell this version still does not accept
<<<
[US,TS] = ordschur(U,T,clusters) reorders multiple clusters simultaneously.
ordschur sorts the specified clusters in descending order along the diagonal
of TS, with the cluster of highest index appearing in the upper left corner.
>>>
that is needed to be a trexc replacement for fumn.
Somebody should check with Matlab:
T = diag([1, 2, 3, 4, 5, 6]);
U = eye(6);
ord = [1, 2, 3, 1, 2, 3];
[US, TS] = ordschur(U, T, ord);
diag(TS)
If I understand this right it should be
[1; 4; 2; 5; 6]
and with current code I see [1;2;3;4;5;6] so no re-ordering is done.
Dmitri.
--
_______________________________________________________
Reply to this item at:
<https://savannah.gnu.org/bugs/?67740>
_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/
signature.asc
(application/pgp-signature, 228 B)
-----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQQk97aszIMMAvLLwm6qLAuaBUf3TgUCaYh71QAKCRCqLAuaBUf3 TncxAP9fWvK2FDxlghrSGK6f6rbTOgyMzGQIc0z9WlrTuI7jtAEA+rnR0JgyplgL dbdd3kqplfLH8m1qVrWRcHVTbhKSOwA= =6lTi -----END PGP SIGNATURE-----