Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Returning values in a matrix between 1 and 2
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
how would I write a script that returns the values in a matrix between 1 and 2. both using for loops and not.
Antworten (1)
Walter Roberson
am 21 Apr. 2014
See also logical indexing
values = YourMatrix(YourMatrix > 1 & YourMatrix < 2);
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!