私の凡例の機能には、私のMATLABコードでタイトルを付そうとしていますが、機能しません。自分のサイトでMatLabの公式ヘルプを使用していますが、何も変わりません。凡例のタイトルはMatLabでは機能しません
私のコード:
stem(100,300,'blue', 'Marker', '*', 'MarkerSize', 4,'LineStyle', '-');
hold on
stem(80,500,'green', 'Marker', '*', 'MarkerSize', 4,'LineStyle', '-');
hold on
stem(30,1400,'red', 'Marker', '*', 'MarkerSize', 4,'LineStyle', '-');
axis([0 150 0 2000]);
hold off
lgd=legend('100%','80%','30%','Location','northeastoutside');
**title(lgd,'My Legend Title','FontSize',12);**
xlabel('DoD(%)','fontname','times','fontsize',16);
ylabel('Number of cycles','fontname','times','fontsize',16);
Matlabのサイトから私はこのコード
x = -pi:pi/20:pi;
y1 = sin(x);
plot(x,y1)
hold on
y2 = cos(x);
plot(x,y2)
hold off
lgd = legend('sin(x)','cos(x)');
**title(lgd,'My Legend Title')**
を取ったが、まだプロットは何も変化しません。