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!