Question: Complete the function FindNumbers that for a given row of numbers, returns the numbers within range 60
Complete the function FindNumbers that for a given row of numbers, returns the numbers within range 60 <= x < 90 and also position of the identified numbers within the array. The input argument (Array_Numbers) is a 1D row array of class double. The output arguments: first output (Numbers): 1D row array containing the numbers within range 60 <= x < 90. second output (Indexes): 1D row array containing the positions of identified numbers in the given input array.
The function FindNumbers must use logical indexing. Do not use loops or if else statements.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
