What is the best way to delete rows of a matrix containing a number outside a specific range? For example
A =
200 400
500 200
500 100
600 200
200 100
300 200
Range = [200 500];
Rows 3,4 and 5 would then be deleted as they contain numbers <200 and >500.