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

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

 Accepted Answer

kcexpxer
kcexpxer on 25 May 2023

0 votes

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

More Answers (0)

Categories

Asked:

on 25 May 2023

Answered:

on 25 May 2023

Community Treasure Hunt

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

Start Hunting!