Data extraction from multiple matfiles.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Shimelis Asfaw Wakigari
il 21 Feb 2019
Commentato: Shimelis Asfaw Wakigari
il 23 Feb 2019
Hello,
The following script loads all the files. The example of data is attached. I want to extract data for specific row and col for all the files i have (i.e., SM1,SM2,SM3,SM3). So i want code at commented place below in the script.
FileInfo=dir('SM*.mat');
for k= 1:length(FileInfo)
fileName=['SM' num2str(k)];
dataStruct.(fileName)=load([fileName '.mat']);
% This the place i want to have the way of extracting a pixel for all matfiles.
end
Thanks
2 Commenti
Kevin Chng
il 22 Feb 2019
It is better if you could upload the mat file here, and state what variable you want to extract.
Risposta accettata
Kevin Chng
il 22 Feb 2019
Your Question:
I want to extract data for specific row and col for all the files i have (i.e., SM1,SM2,SM3,SM3).
For example, if you want to extract row 1 and column 2 from the variable in the mat file. Let assume that SM1 has variable sm1, SM2 has variable sm2,......
FileInfo=dir('SM*.mat');
for k= 1:length(FileInfo)
fileName=['sm' num2str(k)];
dataStruct=load(FileInfo(k).name);
% This the place i want to have the way of extracting a pixel for all matfiles.
dataStruct.(fileName)(1,2)
end
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Workspace Variables and MAT-Files in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!