An array is given that contains the marks received by a group of students in their class test. Find out the highest 3 marks received by the students?
For example if x=[12 5 12.5 10 13 14 8]
Output will be y=[14 13 12.5]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers64
Suggested Problems
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
560 Solvers
-
Output any real number that is neither positive nor negative
411 Solvers
-
Volume of a sphere given its surface area
156 Solvers
-
1037 Solvers
-
Convert from Fahrenheit to Celsius
28893 Solvers
More from this Author30
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Note that this is asking for the highest three DISTINCT marks received by the students --- not the marks received by three highest-ranking students.