Deleting specific rows in an excel file
이전 댓글 표시
Hello everyone,
I recently started working with MATLAB and have to write a script reading out an excel file and creating a new one with only some specific columns and rows of the previous excel file.
I am encountering a problem with deleting rows in a specific column. The idea is that each row in a column named "TriggerHint" with a value > 15 is being disregarded in the new excel file.
The only things I came up with so far ar either
rows_TriggerHint= pp.TriggerHint<16
or
index=ismember(data_pp.TriggerHint, > 15)
which both don't work.
Thank you in advance!
Luisa
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!