I want to create memmap
in MATLAB. In python, I could do this:
ut = np.memmap('my_array.mmap', dtype=np.float64, mode='w+', shape=(140000,3504))
Then I use it as a regular array, the OS guaranteed that my memory was never full. How to do it in MATLAB?
From the docs, it seems like I first need to create some array in MATLAB, and then write it to a file and read with memmap
!
Matlab docs aren’t clear enough: Please give an example of creating a random size array (140,000.15000) and multiply it by another similar matrix.
source
share