how to sort the rows of a matrix?

8 ビュー (過去 30 日間)
Stef
Stef 2018 年 8 月 12 日
コメント済み: Walter Roberson 2018 年 8 月 12 日
I have a matrix RG_table with two columns. I want to sort the rows of the matrix in descending order depending on column 2. Column 2 has values which are non integers. I tried it with sortrows, but I get this error:
Column sorting vector must contain integers with absolute value between 1 and the number of columns in the first argument.
score_sort = sortrows(RG_table, 2, 'descend');
Does anybody know what to do?
  6 件のコメント
dpb
dpb 2018 年 8 月 12 日
編集済み: dpb 2018 年 8 月 12 日
Well, no...we have no way to know any such thing.
One guess would be the data on the server isn't the same as that locally...
Again without much more detail and context we're shooting in the dark here.
ADDENDUM
At a minimum, put
whos RG_table
in the function/script before executing the sortrows line on each platform. That will at least be a chance at figuring out what it is you're looking at.
Walter Roberson
Walter Roberson 2018 年 8 月 12 日
Basically the message is telling you that the table is either empty or has only 1 column.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeShifting and Sorting Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by