I have a mat file with certain data. It has 10 rows per 500 columns but when I do:
matriz = load('Planilha.mat');
disp(size(matriz));
The result is 1 by 20. What's totally different than expected.
How do I get the correct size of a .mat
file?