Filter löschen
Filter löschen

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

3 Ansichten (letzte 30 Tage)
jaah navi
jaah navi am 28 Mär. 2019
Kommentiert: madhan ravi am 28 Mär. 2019
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.

Antworten (1)

madhan ravi
madhan ravi am 28 Mär. 2019
Bearbeitet: madhan ravi am 28 Mär. 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 Kommentare
jaah navi
jaah navi am 28 Mär. 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 am 28 Mär. 2019
You have some problems in reading , read my answer once again THERE WAS NO SORTROWS() function mentioned there!!

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by