Sort the given list of numbers a according to how far away each element is from the target value t. The result should return the list sorted in descending order of the absolute value of the difference between a(n) and t.
So if a = [1 2 4 8 17] and t = 12, then the output b should be [1 2 4 17 8].
Solution Stats
Problem Comments
5 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers4559
Suggested Problems
-
2176 Solvers
-
Basics: 'Find the eigenvalues of given matrix
436 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1256 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
397 Solvers
-
Is this is a Tic Tac Toe X Win?
529 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
quite easy
I bet
a nice practice.
I don't why this easy problem come at last.
Good one.