Load Part of a Matrix or Cell array

15 views (last 30 days)
Richard
Richard on 10 Jun 2011
Commented: Dyuman Joshi on 14 Sep 2023
Hey All,
I was wondering if the latest version of Matlab R2011a has any built in functionality, or if there's anything recent on the file exchange, that can load in only part of a vector, matrix or cell array stored in a ".mat" file.
For example if I have a file "output.mat" which contains a single variable "large_matrix" which is a (100x100) matrix is there a way I can load say the 10th element, large_matrix(10), without loading the entire matrix into memory?
The above is to just illustrate my question I know Matlab could easily load a 100x100 matrix into memory.
The most Matlab seems to offer is selectively loading variables e.g.
loaded_file = load('output','other_variable');
other_variable = loaded_file.other_variable;
But I'm hoping I'm wrong.
Any advice would be greatly appreciated, Thanks

Answers (3)

Bjoern Hendrik Fock
Bjoern Hendrik Fock on 19 Jun 2011
  3 Comments
Walter Roberson
Walter Roberson on 19 Jun 2011
Jan, it could matter for memory use purposes. Suppose you wanted a small number of elements from a very large matrix. The decompression routine could read values and throw them away until it got to the correct place -- and if the values happened to be consecutive in the file, it wouldn't even have to hunt around and decompress other blocks.
There are, of course, efficiency issues such as if the user's request did not index the elements in monotonically increasing order and the list of requested elements was too large to sort in the available memory. None the less, there are cases where it would make sense for memory use and file efficiency to read selectively.
Dyuman Joshi
Dyuman Joshi on 14 Sep 2023
@Bjoern Hendrik Fock, the links you have attached don't seem to be working anymore.

Sign in to comment.


Titus Edelhofer
Titus Edelhofer on 10 Jun 2011
Hi,
unfortunately the answer is no (for R2011a). What I have done is to write a simple function that splits the variable into pieces when saving to a file, and read the pieces afterwards while processing the data...
Titus

Bjoern Hendrik Fock
Bjoern Hendrik Fock on 6 Sep 2011
The feature seems to be added in Matlab R2011b by a new function called matfile. I will try this out the next days. MathWorks, this looks like an important improvement. Thank you for listening to your customers.
Bjoern

Categories

Find more on Construct and Work with Object Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!