next | previous | forward | backward | up | top | index | toc | home

SVD(..., DivideConquer => ...) -- Use the lapack divide and conquer SVD algorithm

Synopsis

Description

For large matrices, this algorithm is often much faster.
i1 : M = random(RR^200, RR^200);

              200        200
o1 : Matrix RR    <--- RR
i2 : time SVD(M);
     -- used 0.392025 seconds
i3 : time SVD(M, DivideConquer=>true);
     -- used 0.192012 seconds

Further information