Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Left Division "A\B" of Sparse Matrices is Awfully Slow #659

Open
rdbyk opened this issue Aug 1, 2018 · 0 comments
Open

Left Division "A\B" of Sparse Matrices is Awfully Slow #659

rdbyk opened this issue Aug 1, 2018 · 0 comments

Comments

@rdbyk
Copy link
Owner

rdbyk commented Aug 1, 2018

It is so slow (cf. below), that it is considered to be a bug!

Scilab

--> n=1100;
--> A=speye(n,n)+sprand(n,n,0.001);
--> B=speye(n,n)+sprand(n,n,0.001);
--> tic;A\B;toc
 ans  =
   13.51592

Octave

octave:7> n=1100;
octave:8> A=speye(n,n)+sprand(n,n,0.001);
octave:9> B=speye(n,n)+sprand(n,n,0.001);
octave:10> tic;A\B;toc
Elapsed time is 0.078903 seconds.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant