x = 1:10;
y = sin(x);
plot(x, y, 'LineWidth', 2, 'DisplayName', 'Sin(x)');
title('My Plot');
legend('show');
上記の例では、plot
関数でSin(x)
という名前のデータをプロットし、title
関数で図にMy Plot
という名前を付けています。legend('show')
を追加することで凡例も表示されます。
方法2: アノテーションを使用する方法
MATLABでは、text
やannotation
関数を使用して図にテキストを追加することができます。以下のコードは、図に名前を追加するためにannotation
関数を使用した例です:
x = 1:10;
y = sin(x);
plot(x, y, 'LineWidth', 2, 'DisplayName', 'Sin(x)');
annotation('textbox', [0.2, 0.8, 0.1, 0.1], 'String', 'My Plot', 'FitBoxToText', 'on');
legend('show');
上記の例では、annotation
関数を使用してテキストボックスを図の指定位置に追加し、そこにMy Plot
という名前を表示しています。
これらの方法を使用することで、MATLABで図に名前を追加することができます。必要に応じて、他のオプションやプロパティを使用して図の外観をカスタマイズすることもできます。