Data extraction from multiple matfiles.
이전 댓글 표시
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
KSSV
2019년 2월 21일
How is the data stored in mat file? YOu extract the variable you want.
Kevin Chng
2019년 2월 22일
It is better if you could upload the mat file here, and state what variable you want to extract.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!