Creating new matrix with another matrix
显示 更早的评论
We have a matrix,if any of the rows has a 0 at the last column we take the that row to write a new matrix and it will continue till the end of the old matrix.
回答(1 个)
Rik
2019-11-20
Do you mean something like this?
data=randi([-2 5],[50 70]);
hasZeroInLastCol= data(:,end)==0;
newdata=data(hasZeroInLastCol,:);
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!