confusion matrix with string greek letters like alpha and beta

4 ビュー (過去 30 日間)
LuMig
LuMig 2022 年 9 月 16 日
コメント済み: LuMig 2022 年 9 月 20 日
I have a string matrix with is supposed to have greek letters.
Example: My matrix contains the abbreviation: B-Glc, but I want it to appear as β-Glc in the matrix and on the axis of the confusion matrix.
I have tried '/beta' but it did not work.
Thnak you
  3 件のコメント
LuMig
LuMig 2022 年 9 月 16 日
編集済み: LuMig 2022 年 9 月 16 日
function confusionchart from Statistics and Machine Learning Toolbox
.
I want to display the class labels on the axes as greek letters rather than normal letters
LuMig
LuMig 2022 年 9 月 16 日
\beta does not work

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

回答 (2 件)

Rik
Rik 2022 年 9 月 16 日
If you use the actual greek letters, that should work (as long as the function supports all implemented characters):
text(1,1,char(945:969))
axis([0 5 0 2])
  1 件のコメント
Walter Roberson
Walter Roberson 2022 年 9 月 17 日
Unfortunately, confusionchart does not have any control over interpreter. However if you insert unicode characters into the class labels, the characters will be drawn (if present in the font.)

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


LuMig
LuMig 2022 年 9 月 19 日
I solved this issue (only a turnaround)
% alpha is the greek letter
alpha = cellstr(char(945));
% Label1 is the true label and I am appending an optional string to alpha.
% Label(1,1) will contain /alpha-Glu in greek
Label1(1,1)= strcat(string(alpha), '-GLu');
Label2(1,1)=strcat(string(alpha), '-MM');
% Apply confusionchart to Label1 and Label2
confusionchart(categorical(Label),categorical(Label2));
the class labels on the axes as greek letters rather than normal letters
  2 件のコメント
Walter Roberson
Walter Roberson 2022 年 9 月 19 日
Why do you cellstr() and then string() ? Why not directly string()?
alpha = string(char(945));
Label1(1,1) = alpha + "-GLu";
Label2(1,1) = alpha + "-MM";
LuMig
LuMig 2022 年 9 月 20 日
You are right, no need to cellstr() and string(). Thank you

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

カテゴリ

Help Center および File ExchangeLabels and Annotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by