![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/286523/image.jpeg)
plot(1); xlabel(`123_456`)
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ラベルに_を入力すると _の後の文字が小さくなる Ver6ぐらいからずっと治らない
0 Kommentare
Akzeptierte Antwort
Kenta
am 22 Apr. 2020
こんにちは、'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')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/286523/image.jpeg)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Subplots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!