FETCH LARGEST NUMBERS

I HAVE A SET OF 10 NUMBERS .
AND I WANT THE OUT PUT TO BE THE LARGEST THREE NUMBERS FROM THE ABOVE SET....... THANKS IN ADVANCE

 采纳的回答

Matt Fig
Matt Fig 2011-3-1

2 个投票

1. Take the capslock off.
2. Sort your array in descending order. Use the SORT function.
3. Take the first 3 numbers in the sorted array.

2 个评论

thanks for the reply ....cool idea ... i cannot take the first three number out of the array.....
Well, Matlab can. What have you tried and where did which problems occur?
Matt Fig means: x = rand(1, 10); s = sort(x, 2, 'ascending'); largest3 = s(1:3)

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by