matlab title怎么显示下划线
时间: 2023-10-31 13:09:08 浏览: 315
matlab中点划线
如果您想在 MATLAB 图形标题中显示下划线,可以使用下划线字符 "_" 来代替空格。例如,如果您想在图形标题中显示 "My_Title_With_Underscores",可以使用以下代码:
```
title('My\_Title\_With\_Underscores')
```
请注意,在 MATLAB 中,下划线字符在字符串中具有特殊含义,因此需要使用反斜杠 "\" 进行转义。
阅读全文