How to delete data from 2D matrix?
13 次查看(过去 30 天)
显示 更早的评论
a = 155 34,
127 134,
223 334,
135 366,
123 418,
Lets say I want to delete the second row data so a become like this.
a = 155 34,
223 334,
135 366,
123 418,
0 个评论
采纳的回答
Image Analyst
2013-1-9
a(2,:) = [];
2 个评论
Grace
2014-6-3
Hi, extended from this question, what if i want to delete several rows from a matrix? How am i going to do this?
John D'Errico
2014-6-3
TRY SOMETHING! Logically, what would this do:
a([2 3],:) = [];
??
The trick to MATLAB is to try out what seems logical. Very often it will do what you might expect. Read the help where possible, but you will learn much by playing around.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!