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 commentsGroup

Matrix Manipulation I
- 16 Problems
- 98 Finishers
- Remove the air bubbles
- Remove NaN ?
- N-Dimensional Array Slice
- Back to basics 21 - Matrix replicating
- Back to basics 23 - Triangular matrix
- Make an awesome ramp for a tiny motorcycle stuntman
- Flip the main diagonal of a matrix
- surrounded matrix
- Some Assembly Required
- Set some matrix elements to zero
- Matrix with different incremental runs
- Removing rows from a matrix is easy - but what about inserting rows?
- Rotate input square matrix 90 degrees CCW without rot90
- Permute diagonal and antidiagonal
- Operate on matrices of unequal, yet similar, size
- Reverse the elements of an array
Problem Recent Solvers6450
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!