Place coordinates in the plot legend

7 ビュー (過去 30 日間)
Miguel Albuquerque
Miguel Albuquerque 2022 年 7 月 21 日
コメント済み: Star Strider 2022 年 7 月 21 日
Hey guys, is there a way of putting those red letters in the plot, at the front of "target" in the legend?
Its just replacing x and y in text but I dont know what coordinates to put, this is the code;
plot(waypoints,azimuth2);
hold on
plot(waypoints,RMC);
plot(x,y,'^r');
textString2 = sprintf('(%2.f, %2.f)', x, y);
text(x, y,textString2,"Color",'r','FontSize',10);
title('Range over aeroplane movement');
xlabel('Waypoints (m)');
ylabel('Range (m)');
legend('Azimuth Compression','Range Migration Correction','Target');

採用された回答

Star Strider
Star Strider 2022 年 7 月 21 日
編集済み: Star Strider 2022 年 7 月 21 日
Perhaps —
xv = 0:10:400;
ym = rand(2,size(xv,2))*3500;
x = 230;
y = 95;
figure
plot(xv, ym)
hold on
plot(x, y, '^r')
hold off
legend('Azimuth Compression','Range Migration Correction',sprintf('(%2.0f,%2.0f) Target',x,y))
EDIT — (21 Jul 2022 at 14:48)
Minor format changes to the plot.
.
  2 件のコメント
Miguel Albuquerque
Miguel Albuquerque 2022 年 7 月 21 日
Thanks
Star Strider
Star Strider 2022 年 7 月 21 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by