mex_rref

버전 1.3.0.0 (3.21 KB) 작성자: Ben Mitch
Same functionality as the MATLAB rref function, but quicker.
다운로드 수: 1.8K
업데이트 날짜: 2010/8/30

라이선스 보기

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
카테고리
Help CenterMATLAB Answers에서 Signal Modeling에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.3.0.0

Added a demo script and an auto-compile script. Also added proper support for tolerance parameter.

1.0.0.0