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!