How to remove array elements after comparing it to another array?
조회 수: 8 (최근 30일)
이전 댓글 표시
Hello guys,
I am facing the issues with removing unneeded part of array, which I read from .xlsx file. The thing is, that I want to have the same vector lengths of time and yaxis vectors. I read my time vector from the xlsx file and after that I read the Yaxis value from the same xlsx. As you see, I managed to do a time cutoff after 30 seconds, so I need to make the same vectors length. How can I make a cutoff for another vector and make it the same length? Any ideas?
Thanks!
time=xlsread('duom.xlsx', 'A3:A7040');
mask = time > 30
time(mask) = [];
yaxis=xlsread('duom.xlsx','C3:C7040');
댓글 수: 0
채택된 답변
Rik
2020년 5월 6일
The same you already had:
time=xlsread('duom.xlsx', 'A3:A7040');
yaxis=xlsread('duom.xlsx','C3:C7040');
mask = time > 30
time(mask) = [];
yaxis(mask) = [];
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!