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
引用格式
Ben Mitch (2024). mex_rref (https://www.mathworks.com/matlabcentral/fileexchange/4085-mex_rref), MATLAB Central File Exchange. 检索时间: .
MATLAB 版本兼容性
创建方式
R2008b
兼容任何版本
平台兼容性
Windows macOS Linux类别
- Signal Processing > Signal Processing Toolbox > Transforms, Correlation, and Modeling > Signal Modeling >
在 Help Center 和 MATLAB Answers 中查找有关 Signal Modeling 的更多信息
标签
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!