Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
selection of specific value of a column from a matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
madhan ravi
el 4 de Jul. de 2020
Use the same code I gave you in previous code , but remove 'descend' .
5 comentarios
madhan ravi
el 5 de Jul. de 2020
ROM = [cellular(1:size(resource,1)).', sortrows(resource, 2)];
ROM = ROM(ROM(:, end) > 5, :)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!