Matlab画图时text文本自动换行的问题。

小弟我需要在画图时插入一个文本框显示数据,而显示出的文本会自动换行,这比较影响观感,有什么办法能够不自动换行呢?text(10,75000,{'均方根误差RMSE=' RMSE1,'m^3/s'},'FontSize',12,'FontName','楷体');

 Respuesta aceptada

kcexpxer
kcexpxer el 25 de Mayo de 2023

0 votos

改为:
text(10,75000,['均方根误差RMSE=' RMSE1,'m^3/s'],'FontSize',12,'FontName','楷体');

Más respuestas (0)

Categorías

Más información sobre 输入命令 en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 25 de Mayo de 2023

Respondida:

el 25 de Mayo de 2023

Community Treasure Hunt

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

Start Hunting!