How can I select rows in an array based on the values in the first row of another array?

4 次查看(过去 30 天)
Hi suppose I have a column of values like :
How do I select every other row that are not displayed in the rows above in another new array. Example: I will want all other row 1,2,4,5..... excluding row 3, 39,51,15,28,65 and 56.
Please help, Thank you!

采纳的回答

Stephen23
Stephen23 2020-2-4
编辑:Stephen23 2020-2-4
idx = setdiff(1:size(yourarray,1),yourvector)
out = yourarray(idx,:)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by