what is the use of .mat file?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
.mat file representation
0 comentarios
Respuestas (1)
Azzi Abdelmalek
el 19 de Sept. de 2013
A mat file is a Matlab binary file with extension .mat. For example:
A=[1 2;3 4];
B=10;
C='word'
save filename A B C % save the variables A,B and C in a file filename.mat
load filename ; % load your data A,B and C from filename.mat
0 comentarios
Ver también
Categorías
Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!