I have a 800x6
cell array vol
, whose 1st to 5th columns are double and 6th column is a 200x200x200
3D double matrix. I am trying to save it to a variable, a .mat file more specifically.
>> save('./vol.mat', 'vol');
Warning: Variable 'vol' cannot be saved to a MAT-file whose version is older than 7.3.
To save this variable, use the -v7.3 switch.
Skipping...
Why is it so? How should I fix it?
P.S.: I feel rather reluctant to save this cell array as a text file, as doing so sort of "destroys" the structure.