1
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. Which is totally different from the expected.
How do I get the correct file size .mat
?
What is the file format? Describe an example in the question.
– Marcelo Shiniti Uchimura
@Marcelo Uchimura, the file format is '.mat', file with numerical data.
– Beto
Are you sure you saved the right matrix inside the file?
– Marcelo Shiniti Uchimura
Yes, through Matlab’s Workspace to visualize the matrix.
– Beto