Azzera filtri
Azzera filtri

Big Data math operations

1 visualizzazione (ultimi 30 giorni)
Ahmed raafat
Ahmed raafat il 4 Dic 2021
Commentato: Matt J il 6 Dic 2021
I have matrix 414588x47236 want to make PCA dimension reduction on it
is there any idea to make so my computer is not crashing and minimze operation time?
  3 Commenti
Mike Croucher
Mike Croucher il 4 Dic 2021
What kind of matrix is it? Is it sparse or dense? Double precision? Single precision?
Is the matrix stored in a file? .mat or .csv or something else?
Have you managed to load it into MATLAB at all? What are the specifications of the machine you are using?
Ahmed raafat
Ahmed raafat il 5 Dic 2021
it is sparse matrix , uploaded into matlab from mat file
when I try to use pca command it send error that can't deal with sparse

Accedi per commentare.

Risposta accettata

Matt J
Matt J il 5 Dic 2021
You could do,
[U,S]=svds(A,k);
A_reduced=U*S;
  2 Commenti
Ahmed raafat
Ahmed raafat il 6 Dic 2021
and for PCA , what command?
Matt J
Matt J il 6 Dic 2021
A_reduced is the result of the PCA.

Accedi per commentare.

Più risposte (0)

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by