Why symvar() sort 10 smaller than 9

2 ビュー (過去 30 日間)
Chen Bo-Yang
Chen Bo-Yang 2021 年 4 月 9 日
コメント済み: Walter Roberson 2021 年 4 月 12 日
My variables is X = X1 X2 ... X9 X10,but when I use symvar(X),I get X1 X10 X2 ... X9。
How can I sort it from small to large?

採用された回答

Walter Roberson
Walter Roberson 2021 年 4 月 9 日
symvar() sorts inconsistently if I recall correctly. It gets complicated when you start mixing numbers and underscores.
For the simple case that does not involve underscores, symvar() sorts by unicode code point
alpha = evalin(symengine, '`α`'); %unicode U+03B1
lambda = evalin(symengine, '`λ`'); %unicode U+03BB
beta = evalin(symengine, '`β`'); %unicode U+03B2
chi = evalin(symengine, '`χ`'); %unicode U+03C7
symvar([alpha,chi,lambda,beta])
ans = 
and '1' is before '2' in unicode, so X1anything occurs before X2anything
  2 件のコメント
Chen Bo-Yang
Chen Bo-Yang 2021 年 4 月 11 日
Thanks for your answer and I use sort() to solve my problem.
Walter Roberson
Walter Roberson 2021 年 4 月 12 日
sort() will sort by unicode code point -- but at least sort() would be consistent about what happens if you mix numbers and underscores.

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by