필터 지우기
필터 지우기

How can I trigger data?

조회 수: 3 (최근 30일)
Miriã Santos Godói
Miriã Santos Godói 2023년 10월 3일
댓글: Voss 2023년 10월 5일
How can I trigger data?
I have three matrix and I want to trigger among them.
I don't known how to start. Please, help me!
  댓글 수: 9
Miriã Santos Godói
Miriã Santos Godói 2023년 10월 5일
Voss
Voss 2023년 10월 5일
OK. These appear to be the same as the text files you already uploaded, only with a different extension.
unzip KCl_50kV_3.zip
% read the text files
txt_files = dir('*.txt');
n_files = numel(txt_files);
for ii = 1:n_files
txt_files(ii).data = readmatrix(txt_files(ii).name);
end
% read the lvm files
lvm_files = dir('*.lvm');
n_files = numel(lvm_files);
for ii = 1:n_files
lvm_files(ii).data = readmatrix(lvm_files(ii).name,'FileType','text');
end
% compare each one
isequaln(txt_files(1).data,lvm_files(1).data)
ans = logical
1
isequaln(txt_files(2).data,lvm_files(2).data)
ans = logical
1
isequaln(txt_files(3).data,lvm_files(3).data)
ans = logical
1
Anyway, what do you want to do? Do you want to shift the data from file 1 and file 3 such that the big dips in the plots I created above are lined up with the big dip in the plot for file 2?

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by