legendbluem2使用教程 matlab如何对曲线图形加标注?

[更新]
·
·
分类:生活百科
3873 阅读

legendbluem2使用教程

matlab如何对曲线图形加标注?

matlab如何对曲线图形加标注?

01
在matlab中要得到曲线就需要画图。在matlab中最简单的画图命令是plot,只需要有两个等长的向量,就可以画出图形。
例如:
x1:0.1:10 %%从1到10的长度为100向量
ysin(x) %%y为长度为100的向量
plot(x,y)%%画出图形
grid on%%添加网格,这是用默认的最小标度画出的网格

figure类用来添加子图的方法是?

# 导入, numpy 包
import numpy as np
import as plt
# 添加主题样式
(mystyle)
# 设置图的大小,添加子图
fig (figsize(5,5))
ax _subplot(111)
#绘制sin, cos
x (-np.pi, np.pi, np.pi / 100)
y1 (x)
y2 (x)
sin, (x, y1, colorred, labelsin)
cos, (x, y2, colorblue, labelcos)
_ylim([-1.2, 1.2])
# 第二种方式 拆分显示
sin_legend ax.legend(handles[sin], locupper right)
_artist(sin_legend)
ax.legend(handles[cos], loclower right)
()
import numpy as np
import as plt
# 添加主题样式
(mystyle)
# 设置图的大小,添加子图
fig (figsize(5,5))
ax _subplot(111)
for color in [red, green]:
n 750
x, y np.random.rand(2, n)
scale 200.0 * np.random.rand(n)
(x, y, ccolor, sscale,
labelcolor, alpha0.3,
edgecolorsnone)
ax.legend()
(True)
()