matlab设置label字体为times new roman
时间: 2023-05-25 14:05:42 浏览: 1104
MATLAB中图形字体大小设置的详细指南
使用以下代码可以将 MATLAB 图表的 label 字体设置为 Times New Roman:
```
set(gca,'FontName','Times New Roman')
xlabel('x-axis label')
ylabel('y-axis label')
title('Title')
```
使用 `set(gca,'FontName','Times New Roman')` 可以设置当前 axes 对象的字体为 Times New Roman。然后使用 `xlabel`、`ylabel` 和 `title` 函数来设置 x 轴、y 轴和标题的标签。
阅读全文