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!