i have a large compressed matrix data saved in a numpy compressed file data.npz.Now i want to load and read it in matlab. can anybody suggest a better solution for the same.Thanks in advance. i searched
Asked
Active
Viewed 35 times
0
-
Uncompress it and then load it into MATLAB using a solution from the duplicate target – Sardar Usama Dec 31 '20 at 14:07
-
how can u please suggest a solution reference code – Dec 31 '20 at 17:14
-
In MATLAB, write `unzip('data.npz');` This will uncompress your npz file and give you an `npy` file. You can read this `npy` file using a solution mentioned in the duplicate target – Sardar Usama Jan 01 '21 at 13:27