Load Part of a Matrix or Cell array

2 Ansichten (letzte 30 Tage)
Richard
Richard am 10 Jun. 2011
Kommentiert: Dyuman Joshi am 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

Antworten (3)

Bjoern Hendrik Fock
Bjoern Hendrik Fock am 19 Jun. 2011
  3 Kommentare
Walter Roberson
Walter Roberson am 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 am 14 Sep. 2023
@Bjoern Hendrik Fock, the links you have attached don't seem to be working anymore.

Melden Sie sich an, um zu kommentieren.


Titus Edelhofer
Titus Edelhofer am 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 am 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

Kategorien

Mehr zu Workspace Variables and MAT Files finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by