matlab绘图plot字体
时间: 2023-10-19 10:34:47 浏览: 131
matlab 读取mat类型文件plot,可设置横纵坐标、图例及其字体字号大小,图窗位置及大小.zip
您可以使用MATLAB的`plot`函数绘制图形,并使用`FontName`参数来设置字体。
示例代码:
```matlab
x = 1:10; % x轴数据
y = sin(x); % y轴数据
plot(x, y, 'FontName', 'Times New Roman'); % 设置字体为Times New Roman
```
以上代码将绘制一个正弦曲线,并将字体设置为Times New Roman。您可以根据需要更改字体名称。
阅读全文