Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
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.

Réponse acceptée

Matt J
Matt J le 28 Jan 2019
Modifié(e) : Matt J le 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 commentaire
Viviana Arrigoni
Viviana Arrigoni le 1 Fév 2019
double clicked to Accepted and signed as Unaccepted by mistake. Seems like I can't undo that, sorry...

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by