Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Write a function called eligible that helps the admission officer of the Graduate School of Vanderbilt University decide whether the applicant is eligible for admission based on GRE scores. The function takes two positive scalars called v and q as in
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Write a function called eligible that helps the admission officer of the Graduate School of Vanderbilt University decide whether the applicant is eligible for admission based on GRE scores. The function takes two positive scalars called v and q as input and returns the logical admit as output. They represent the percentiles of the verbal and quantitative portions of the GRE respectively. You do not need to check the inputs. The applicant is eligible if the average percentile is at least 92% and both of the individual percentiles are over 88%. The function returns logical true or false value.
Your Function
function ans=eligible(v,q);
if v>=92 && q>=88;
ans=true
else
ans=true
end
0 commentaires
Réponses (1)
Mario Chiappelli
le 18 Juil 2019
First off, you have ans set to true in both cases. So change the else statement to be equal to false. Other than that your function should work.
Then call the function like this:
answer = eligible(v,q);
or if you are looping through a database:
answer = double(num); % Where num is the number of applicants
for i = 1:num
answer(i) = eligible(v(i),q(i)); % Where v and q are arrays of data.
end
0 commentaires
Cette question est clôturée.
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!