Info
この質問は閉じられています。 編集または回答するには再度開いてください。
selection of specific value of a column from a matrix
1 回表示 (過去 30 日間)
古いコメントを表示
cellular=1:6
resource=[1 6;2 12;3 7;4 3;5 17]
what are the syntaxes are to use if i want cellular value select row with min column2 value 5 and more??????
output like
1 1 6
2 3 7
3 2 12
and so on...................
0 件のコメント
回答 (1 件)
madhan ravi
2020 年 7 月 4 日
Use the same code I gave you in previous code , but remove 'descend' .
5 件のコメント
madhan ravi
2020 年 7 月 5 日
ROM = [cellular(1:size(resource,1)).', sortrows(resource, 2)];
ROM = ROM(ROM(:, end) > 5, :)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!