why does it take forever to generate some matrices in the Matlab gallery?

1 Ansicht (letzte 30 Tage)
I interrupted the execution of
gallery('randcorr',n)
and
A = gallery('toeppd',n,n,rand(n,1),rand(n,1));
for n = 10000 after almost one hour. I know my computer is not the fastest, but for other matrices in the gallery, it would take seconds.

Akzeptierte Antwort

Matt J
Matt J am 28 Jan. 2019
Bearbeitet: Matt J am 28 Jan. 2019
Because some of the matrix types in the gallery are computationally expensive to construct. In particular, in
A = gallery('toeppd',n,n,rand(n,1),rand(n,1));
you are asking for the summation of 10000 matrices, where each matrix is itself 10000 x 10000. That is a lot of number crunching.
  1 Kommentar
Viviana Arrigoni
Viviana Arrigoni am 1 Feb. 2019
double clicked to Accepted and signed as Unaccepted by mistake. Seems like I can't undo that, sorry...

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by