extract from different .mat file to plot
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a bunch of data in abc_001a01.mat,abc_002a01.mat,abc_001b02.mat and a few more which start with abc. I would like to extract variable N from each .mat and plot it into a graph without manually key in load('abc_001a01.mat'); load('abc_002a01.mat') and so on. Can anyone give me a clu how to start the coding? I am a beginner so please make it easy to understand
Thanks Dav
0 comentarios
Respuestas (2)
Thomas
el 13 de Feb. de 2013
A small example is here: http://stackoverflow.com/questions/10668362/how-i-read-mat-format-files-from-folder-in-matlab
Another example is here: http://stackoverflow.com/questions/11498116/load-multiple-mat-files-to-matlab-workspace
0 comentarios
Azzi Abdelmalek
el 13 de Feb. de 2013
% all your mat-files starting with abc
f=dir('abc*.mat')
filename={f.name} % all your mat-files starting with abc
To read a mat-file
k=1
N=load(filename{k})
N=N.N
0 comentarios
Ver también
Categorías
Más información sobre Text Data Preparation 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!