
plot(1); xlabel(`123_456`)
6 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Kenta
2020 年 4 月 22 日
こんにちは、'Interpreter', 'none' と打てば望む形でタイトルを表示できます。
x=rand(100,1);
y=x*3;
subplot(1,2,1)
scatter(x,y)
title('MATLAB_plot')
subplot(1,2,2)
scatter(x,y)
title('MATLAB_plot', 'Interpreter', 'none')

0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!