Filter löschen
Filter löschen

what is the use of .mat file?

2 Ansichten (letzte 30 Tage)
sheno39
sheno39 am 19 Sep. 2013
.mat file representation

Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 19 Sep. 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

Kategorien

Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by