adding text to scatter plot

30 ビュー (過去 30 日間)
Prasad Joshi
Prasad Joshi 2022 年 2 月 10 日
コメント済み: Prasad Joshi 2022 年 2 月 10 日
The code I develop .. can I add one more sub text so as to differentiate the cases ...For eg :- after 7378 there should be one more text for [ 55 55] duration is there any possibility to add second text in the plot ...can second text be added to the corresponding value ...any inputs thank you in advance
A=xlsread('Compare_All_cases','B9:AB9');
x1=ones(1,3);
y1=A(:,(1:3))
scatter(x1,y1,'filled','r')
xticks([1])
xticklabels({'2 kW'})
text(x1(1),y1(1),sprintf('(%.0f)',y1(1)))
text(x1(2),y1(2),sprintf('(%.0f)',y1(2)))
text(x1(3),y1(3),sprintf('(%.0f)',y1(3)))
hold on
x2=ones(1,3);
y2=A(:,(4:6))
scatter(x2,y2,'filled','b')
xticks([1])
xticklabels({'2 kW'})
text(x2(1),y2(1),sprintf('(%.0f)',y2(1)))
text(x2(2),y2(2),sprintf('(%.0f)',y2(2)))
text(x2(3),y2(3),sprintf('(%.0f)',y2(3)))
legend('20 sec','35 sec')
can we add like this ...One more text..any changes in code can some suggest
  2 件のコメント
AndresVar
AndresVar 2022 年 2 月 10 日
yes you can replace replace the formatting string with '(%.0f) [blah blah]'.
Although I like the different colors with a legend better.
Prasad Joshi
Prasad Joshi 2022 年 2 月 10 日
Thank you Andres

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

回答 (1 件)

KSSV
KSSV 2022 年 2 月 10 日
You may write:
str = strcat('7427 [35 35]') ;
And then use text.
  1 件のコメント
Prasad Joshi
Prasad Joshi 2022 年 2 月 10 日
Thank You KSSV sir

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

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by