Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Returning values in a matrix between 1 and 2
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how would I write a script that returns the values in a matrix between 1 and 2. both using for loops and not.
Réponses (1)
Walter Roberson
le 21 Avr 2014
See also logical indexing
values = YourMatrix(YourMatrix > 1 & YourMatrix < 2);
0 commentaires
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!