Save a matrix to a file with an array of matrices without loading all of the data

1 view (last 30 days)
I have the (example) matrix rand(1000,1000) generated in a loop. For each loop I want the data in this matrix to be saved to a file to be accessed later. For example (unless there is a better way), after each loop the number of rows in the full matrix increases from 1000 to 2000, 3000, etc.
The goal is to save the matrices to the hard drive, freeing up memory. I need to be able to write to the file without reading the whole thing into memory. The data can also later be accessed to generate animated figures of the data without taking up processing power in between loops.
Can this be done with save()? What other approaches are there?

Answers (1)

Jeremy Wurbs
Jeremy Wurbs on 28 Nov 2013
I believe the functionality you are looking for can be done with a matfile object (refer to ' help matfile '), but unfortunately I have not used them enough to know what memory issues you might still run in to.

Categories

Find more on Structures in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!