Loading a 484x585x6626 matrix in Matlab, computer freeze and matlab shut down, but.....

2 views (last 30 days)
"Hello, I just tried to load a .mat file (600 megabytes, 484x585x6626) in Matlab (Linux, Ubuntu, Matlab 2023b), and it was impossible. My computer froze, and Matlab terminated the operation or just shut down. So, I downloaded GNU Octave and tried the same. I could load the file easily. Can someone please explain why? Does Matlab have issues handling large files?"
  2 Comments
Claudio Iturra
Claudio Iturra on 14 Sep 2023
Edited: Claudio Iturra on 14 Sep 2023
I tried the same on two different computers with Matlab, and the same behavior occurred. I also attempted to load the file via Matlab/Terminal matlab -nodesktop -nojvm.
Claudio Iturra
Claudio Iturra on 14 Sep 2023
I could load the file via Matlab on a MacBook computer with 32 GB of RAM. In contrast, when using Octave, my computer with 16 GB of DDR4 2600 RAM could load the file without any problems. Does this imply that Matlab consumes too much RAM on its own?

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 14 Sep 2023
format long g
bytes = 484*585*6626*8
bytes =
15008685120
kilobytes = round(bytes / 1024, 1)
kilobytes =
14656919.1
megabytes = round(kilobytes / 1024, 1)
megabytes =
14313.4
gigabytes = round(megabytes / 1024, 1)
gigabytes =
14
The file is not 660 megabytes.
  7 Comments
Walter Roberson
Walter Roberson on 14 Sep 2023
The facilities that @Dyuman Joshi pointed out can be very useful, but they are at their best for -v7.3 files. With -v7 files (the default for most people) it is not promised that the facility will be able to do any better than to effectively load the entire variable and then trim away the unwanted parts. -v7.3 files are organized a completely different way, using a library that was designed to be able to do partial loading of variables.
This can lead to situations where you might find that you load a -v7 file on your 32 gigabyte Mac, write out a copy of the data as a -v7.3 files, getting out a file that will likely be over 1 gigabytes.. but which your other system can load in pieces.

Sign in to comment.

More Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Tags

Products


Release

R2023b

Community Treasure Hunt

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

Start Hunting!