Please see the attached image. How can i add such degree symbol in a matlab figure?

2 件のコメント

Adam Danz
Adam Danz 2021 年 9 月 1 日
It looks like this plot was generated using the Mapping Toolbox.
Kamruzzaman Bhuiyan
Kamruzzaman Bhuiyan 2021 年 9 月 1 日
i have no idea about this tool. Is there any alternative method? Please help me. It’s urgent

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

 採用された回答

the cyclist
the cyclist 2021 年 9 月 1 日

0 投票

The degree symbol is ASCII character 176. So, here is a simple way:
% Plot some random data
plot(rand(100,1),rand(100,1),'.')
% Set the tick positions, and label them with degrees
set(gca,'XTick',[0 0.5 1],'XTickLabel',{['98',char(176),'E'],['99',char(176),'E'],['100',char(176),'E']})
There are more sophisticated ways to build a longer vector (but using the same basic idea), e.g. using sprintf.

2 件のコメント

Kamruzzaman Bhuiyan
Kamruzzaman Bhuiyan 2021 年 9 月 1 日
It's wirking thaks
Pham
Pham 2025 年 11 月 16 日
移動済み: Stephen23 2025 年 11 月 16 日
it worked, many thanks

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

その他の回答 (2 件)

Voss
Voss 2021 年 9 月 1 日

1 投票

xt = get(gca,'XTick');
xtl = arrayfun(@(x)sprintf('%d\\circE',x),xt,'UniformOutput',false);
set(gca,'XTickLabel',xtl);
Fangjun Jiang
Fangjun Jiang 2021 年 9 月 1 日
編集済み: Fangjun Jiang 2021 年 9 月 1 日

0 投票

title('9^oE')
text(0.5,0.5,'9^oE')
xticklabels({'0^oE','1^oE'})
doc title
search for "superscript"

カテゴリ

Community Treasure Hunt

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

Start Hunting!

Translated by