sortrows problem, i can't run my code file

Error using matlab.internal.math.sortrowsParseInputs>legacyParseCOL (line 106) Column sorting vector must contain integers with absolute value between 1 and the number of columns in the first argument.
Error in matlab.internal.math.sortrowsParseInputs (line 29) [col,colProvided] = legacyParseCOL(col,n,in2);
Error in sortrows (line 60) [col, nanflag, compareflag] = matlab.internal.math.sortrowsParseInputs(A,varargin{:});
Error in Final02 (line 37) Bigsize_sortcharactor=sortrows(Bigsize,11); >>

4 件のコメント

Geoff Hayes
Geoff Hayes 2018 年 2 月 28 日
What can you tell us about Bigsize? Please describe the dimensions, the data type, etc.
Stef
Stef 2018 年 8 月 12 日
Hi Geoff I have the same problem. My matrix is a 50000 x 2 matrix where the first column includes a dummy variable(either +1 or -1) and the second column includes small values between -2 and 2 (non integers as well). I want to sort the matrix according to column 2.
Steven Lord
Steven Lord 2018 年 8 月 12 日
Stef, please show your exact call to sortrows.
Walter Roberson
Walter Roberson 2018 年 8 月 13 日
Your call to sortrows() is requesting sorting on column 11, but you only have two columns.

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

回答 (1 件)

Jos (10584)
Jos (10584) 2018 年 8 月 13 日

0 投票

This replicates when the input to sortrows is not what you think it is.
A = [3 ; 1 ; 2] % 1 column only
sortrows(A, 2) % -> errors as observed above
You could (should?) check the dimensions of A first using
size(A,2)
@Mathworks: why don't you make this error less cryptic by stating (more) explicitly that the first argument has less columns than the column sorting vector (especially when this is already a positive integer).

カテゴリ

ヘルプ センター および File ExchangeShifting and Sorting Matrices についてさらに検索

タグ

質問済み:

2018 年 2 月 28 日

コメント済み:

2018 年 8 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by