could anyone help me to overcome the error in the following code

10 views (last 30 days)
Code
A=rand(3,8)
C=max(A,[],2)
D=maxk(C,3)
When i run the code i am getting error stating Undefined function or variable 'maxk'.
could anyone please help me to overcome it.

Answers (1)

madhan ravi
madhan ravi on 28 Mar 2019
Edited: madhan ravi on 28 Mar 2019
maxk() was introduced in 2017b so if you are using version prior to it use:
1) sort() row wise in descending order.
2) Just extract the first three columns from it.
  2 Comments
jaah navi
jaah navi on 28 Mar 2019
When i use sortrows command all the rows are getting sorted.
what i need is i need to sort the numbers present in each row but not sorting the order of rows.
Could you please help me on this.
madhan ravi
madhan ravi on 28 Mar 2019
You have some problems in reading , read my answer once again THERE WAS NO SORTROWS() function mentioned there!!

Sign in to comment.

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!