Question: Logic array: Identifying qualifying times Create a logic array qualifyinglndex with true for any location where the runner is male with a running time less

Logic array: Identifying qualifying times
Create a logic array qualifyinglndex with true for any location where the runner is male with a running time less than 8.2. Row arra runnerGenders indicate if a runner if male (M) or female (F). Row array runnerTimes indicates the corresponding runner's time.
Function
Save
Reset
MATLAB
function qualifyingIndex = FindQualifying(runnerGenders, runnerTimes)
% runnerGenders: Indicates if the runner is male (M) or female (F)
% runnertimes: Corresponding run time
% Create a logic array qualifyingIndex with true for any location
% where the runner is male with a running time less than 8.2
qualifyingIndex =;
end
Code to call your function ?
1 FindQualifying(['M','F','M','M','F'],[8.5,9,7.7,7.9,7.2])
Assessment:
 Logic array: Identifying qualifying times Create a logic array qualifyinglndex with

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!