An×n Axi=bii=1…mm
V = inv(A);
...
x = V*b;
O(n3)inv(A)
O(n2)V*b
m
>> n = 5000;
>> A = randn(n,n);
>> x = randn(n,1);
>> b = A*x;
>> rcond(A)
ans =
1.3837e-06
>> tic, xm = A\b; toc
Elapsed time is 1.907102 seconds.
>> tic, [L,U] = lu(A); toc
Elapsed time is 1.818247 seconds.
>> tic, xl = U\(L\b); toc
Elapsed time is 0.399051 seconds.
>> tic, [L,U,p] = lu(A,'vector'); toc
Elapsed time is 1.581756 seconds.
>> tic, xp = U\(L\b(p)); toc
Elapsed time is 0.060203 seconds.
>> tic, V=inv(A); toc
Elapsed time is 7.614582 seconds.
>> tic, xv = V*b; toc
Elapsed time is 0.011499 seconds.
>> [norm(xm-x), norm(xp-x), norm(xl-x), norm(xv-x)] ./ norm(x)
ans =
1.0e-11 *
0.1912 0.1912 0.1912 0.6183
A−1LUm>125
Bazı notlar
Kararlılık ve hata analizi için lütfen bu farklı cevaba , özellikle de VictorLiu'nun cevabına bakınız.
m≪n
Zamanlama, oldukça sabit bir UNIX yük ortalaması 5 olan 12 çekirdekli bir bilgisayarda Matlab R2011b ile gerçekleştirildi; tic, toc
üç probun en iyi zamanı.