Created
June 15, 2021 13:13
-
-
Save ntakouris/49a724cec790878578349da768f67f94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function [mean_per_class, num_fail_students] = courses_calc(data_vec) | |
mean_per_class = mean(data_vec(:).grades, 1); | |
failed_students = data_vec(:).grades > 5; | |
num_fail_students = sum(failed_students, 1); | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment