Sie verfolgen jetzt diese Einreichung
- Aktualisierungen können Sie in Ihrem Feed verfolgter Inhalte sehen.
- Je nach Ihren Kommunikationseinstellungen können Sie auch E-Mails erhalten.
Same functionality as the MATLAB rref function, but quicker.
>> mex_rref_demo
A = rand(200);
R1 = rref(A);
Elapsed time is 1.435837 seconds.
R2 = mex_rref(A);
Elapsed time is 0.012729 seconds.
max(max(abs(R1 - R2))): 0
Speed-up factor: 113
Zitieren als
Ben Mitch (2026). mex_rref (https://de.mathworks.com/matlabcentral/fileexchange/4085-mex_rref), MATLAB Central File Exchange. Abgerufen .
Allgemeine Informationen
- Version 1.3.0.0 (3,21 KB)
Kompatibilität der MATLAB-Version
- Kompatibel mit allen Versionen
Plattform-Kompatibilität
- Windows
- macOS
- Linux
| Version | Veröffentlicht | Versionshinweise | Action |
|---|---|---|---|
| 1.3.0.0 | Added a demo script and an auto-compile script. Also added proper support for tolerance parameter. |
||
| 1.0.0.0 |
