how can I delete some rows from a matrix
显示 更早的评论
Hello,
I have a matrix with 3 col and many rows, I need to to create a new matrix with only odd romws numbers and delet the pair rows.
Someone have an idea how I can do this?
Thank you very much
回答(1 个)
This creates a new matrix with only the odd rows from the original matrix —
A = randi(9, 10,3)
Anew = A(1:2:end,:)
.
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!