필터 지우기
필터 지우기

Writing a Script..

조회 수: 3 (최근 30일)
FG
FG 2020년 9월 7일
댓글: FG 2020년 9월 7일
Hi all.. I have a bunch of mat files consisting of 25 types data each inside. I am interested in only 4 of them. They also are in another directory different than matlab. What I want to do is reading only all 4 data from all mat files. How can I write a script for this.. Thnx
  댓글 수: 2
KSSV
KSSV 2020년 9월 7일
What data to be read from each mat file?
FG
FG 2020년 9월 7일
Harmonics for example.. 3,5,7 and thd

댓글을 달려면 로그인하십시오.

채택된 답변

Stephen23
Stephen23 2020년 9월 7일
D = 'absolute or relative path to the folder file where the files are saved';
S = dir(fullfile(D,'Case*.mat'));
N = numel(S);
C = cell(1,N);
for k = 1:N
% change 'f1' etc. to the names of the data you want:
T = load(fullfile(D,S(k).name),'f1','f2','f3','f4');
S(k).f1 = T.f1;
S(k).f2 = T.f2;
S(k).f3 = T.f3;
S(k).f4 = T.f4;
end
It will import the required file data into the structure S:
  댓글 수: 3
Stephen23
Stephen23 2020년 9월 7일
편집: Stephen23 2020년 9월 7일
"is it going to read case1111, case1112, case1113.. etc. automatically ?"
Yes.
"And what is gonna be the name here..?"
name is one the fields in the structure returned by dir, the field contains the filenames. To know more read the dir documentation and the link that I gave you
FG
FG 2020년 9월 7일
Thnx for your help.. Thnx indeed

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by