Problem 44960. Rescale Scores
Each column (except last) of matrix X contains students' scores in a course assignment or a test. The last column has a weighted combination of scores across all the assignments and tests.
Replace the elements in the last column of this matrix with a GPA calculated based on the following scale:
Score GPA
91 - 100 3 - 4
81 - 90 2 - 3
71 - 80 1 - 2
61 - 70 0 - 1
Below 60 0
Assume that no student in this class has scored below 60. Also note that the mapping in the range [60, 100] is linear.
Example
Input:
100 90 95 95
70 50 60 60
80 70 90 80
Output:
100 90 95 3.5
70 50 60 0.0
80 70 90 2.0
Solution Stats
Problem Comments
-
16 Comments
Show
13 older comments
Francesco
on 8 Oct 2023
This problem is actually better off without the function rescale. And to say it all the rescale function itself is more something for the uneducated in basic arithmetics,
shuo shang
on 26 Dec 2023
Test 3 should be 70 80 60 70
Juan
on 18 Nov 2024
Dear MATLAB & Cody friends, I had a issue with the values of test 3, where it says that the score for the 2 row it should be 1.5... but for that case, thw values on the Entry Data table should be: 70-80-75-75 or any mix of those value.
If anyone of the Cody program can check this out, it would be great for the upcoming students.
Solution Comments
Show commentsProblem Recent Solvers6415
Suggested Problems
-
6873 Solvers
-
Find nearest prime number less than input number
859 Solvers
-
Rounding off numbers to n decimals
4772 Solvers
-
956 Solvers
-
803 Solvers
More from this Author13
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!