Azzera filtri
Azzera filtri

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

3 visualizzazioni (ultimi 30 giorni)
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.

Risposte (1)

madhan ravi
madhan ravi il 28 Mar 2019
Modificato: madhan ravi il 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 Commenti
jaah navi
jaah navi il 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 il 28 Mar 2019
You have some problems in reading , read my answer once again THERE WAS NO SORTROWS() function mentioned there!!

Accedi per commentare.

Categorie

Scopri di più su Shifting and Sorting Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by