Deleting multiple cell rows after using uiimport
조회 수: 1 (최근 30일)
이전 댓글 표시
Is there a way to delete multiple rows from an imported csv file after using uiimport()? For example: rows 1-8, 917-932, 1841-1856... etc The reason for needing these rows deleted is that they give invalid numbers and mess up analysis and plotting.
Thanks
댓글 수: 0
채택된 답변
Kye Taylor
2012년 6월 15일
If C is a cell, delete rows j through k using
C(j:k,:) = []; % note use of parentheses and not braces to index
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!