rref function is quite slow.
이전 댓글 표시
rref function is quite slow. Even for a 1000x1000 dense matrix, it requires more than 10 sec. For example, let us consider the 'kms' matrix from the matlab gallery and test it for various values of its dimension n. >A=gallery('kms',n,0.2); tic; Q=rref(A); toc; The attached figure depicts the execution time in seconds as the dimension of the aforementioned test matrix increases. Although the execution time is expected to be comparable to LU function of Matlab, it seems that rref is several orders of magnitude slow.

답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!