Question: Write a function called as ALES_Score_Calculator which calculates the ALES score of the applicant and decides if he/she has good enough scores for being apply

Write a function called as ALES_Score_Calculator which calculates the ALES score of the applicant and decides if he/she has good enough scores for being apply "Master of Science" programs. ALES has two parts called as verbal and quantitative, and the two input arguments of your function, named as v and q, will represent these parts respectively. There is no need to check the inputs. The applicant can apply to Master programs if the average percentile is at least 90% and both of the individual percentiles are over 86%. The function will return logical true or false. The verbal and quantitative parts have the same level of contribution in average percentile calculation.
Some example usages of the function is given below;
Please upload your written function as a m.file (if .m file type is not supported, please upload your function as a .txt file).
>> admit = ALES_Score_Calculator (90,88) admit = logical 0 >> admit = ALES_Score_Calculator (90,92) admit = logical 1 >> admit = ALES_Score_Calculator (85,99) admit = logical 0
Step by Step Solution
There are 3 Steps involved in it
To solve the problem you need to create a MATLAB function that calculates whether the applicant is e... View full answer
Get step-by-step solutions from verified subject matter experts
