MATLAB: Save in .mat

matrixsaving.mat

Hi i have problem when i saved matrix in name (Ybustotal) in 3D (609*609*1024) the matlab gives me this massage Warning: Variable 'Ybustotal' cannot be saved to a MAT-file whose version is older than 7.3. To save this variable, use the -v7.3 switch. Skipping…
i am using MATLAB R2014a can any one help me with this problem
thank you

Best Answer

Apparently, it wants you to use the syntax:
save(filename,'Ybustotal','-v7.3')