Clear Filters
Clear Filters

Big Data math operations

1 view (last 30 days)
Ahmed raafat
Ahmed raafat on 4 Dec 2021
Commented: Matt J on 6 Dec 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 Comments
Mike Croucher
Mike Croucher on 4 Dec 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 on 5 Dec 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

Sign in to comment.

Accepted Answer

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

Sign in to comment.

More Answers (0)

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!