Question: 3) Below is a code snippet that tries to count the number of elements in a vector DATA that are either greater than 100 or

3) Below is a code snippet that tries to count the number of elements in a vector DATA that are either greater than 100 or less than 50. Assume the variable DATA is a vector and has already been assigned. Please explain any issues with the code and how to correct them. NUM = length (DATA); for i=1:NUM if DATA (i) > 100 count = count + 1; end if DATA (i)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
