Returning values in a matrix between 1 and 2
Info
This question is closed. Reopen it to edit or answer.
Show older comments
how would I write a script that returns the values in a matrix between 1 and 2. both using for loops and not.
4 Comments
Azzi Abdelmalek
on 20 Apr 2014
Is this a homework?
Kimberly
on 20 Apr 2014
Star Strider
on 20 Apr 2014
Kimberly
on 21 Apr 2014
Answers (1)
Walter Roberson
on 21 Apr 2014
See also logical indexing
values = YourMatrix(YourMatrix > 1 & YourMatrix < 2);
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!