Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Returning values in a matrix between 1 and 2
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how would I write a script that returns the values in a matrix between 1 and 2. both using for loops and not.
Respuestas (1)
Walter Roberson
el 21 de Abr. de 2014
See also logical indexing
values = YourMatrix(YourMatrix > 1 & YourMatrix < 2);
0 comentarios
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!