How to add the the "change in" symbol (i.e the small tringle) on y label

29 ビュー (過去 30 日間)
Vikash Raj
Vikash Raj 2022 年 9 月 11 日
コメント済み: Vikash Raj 2022 年 9 月 11 日
Hi,
I have plotted the pecentage change in VTEC againg the Latitude. I have manage to obtain my graph but I want the add the triangle symbol to indicate change in beside VTEC (%) on the y label. Im attaching my plot and the codes.
plot(LT, VTEC6A1,'or-','MarkerFaceColor','r','MarkerSize',5);
ylabel('VTEC %','fontweight','bold','FontSize',9) % Before VTEC add the triangle symbol
xlim([-30 30]);
xticks(-30:10:30)
ylim([-100 100])
yticks(-100:50:100)
grid
box on
ax = gca;
ax.LineWidth = 2;
title('06/01 ~00.28hrs Log -157^{\circ}','FontSize',10)

採用された回答

Walter Roberson
Walter Roberson 2022 年 9 月 11 日
ylabel('\Delta VTAC %')

その他の回答 (1 件)

KSSV
KSSV 2022 年 9 月 11 日
Read about plot. The marker '^' goves you upper triangle and the marker 'v' gives you lower triangle.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by