说明
1、Matplotlib函数可以绘制图形,使用plot函数绘制曲线。
2、需要将200个点的x坐标和Y坐标分别以序列的形式输入plot函数,然后调用show函数来显示图形。
实例
1
2
3
4
5
6
7
8
9
10
|
import matplotlib.pyplot as plt
#200个点的x坐标
x = range ( - 100 , 100 )
#生成y点的坐标
y = [i * * 2 for i in x ]
#绘制一元二次曲线
plt.plot(x,y)
#调用savefig将一元二次曲线保存为result.jpg
plt.savefig( 'result.jpg' ) #如果直接写成 plt.savefig('cos') 会生成cos.png
plt.show()
|
实例扩展:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import matplotlib.pyplot as plt
# 定义定义域[-10, 11]
x_val = [i for i in range ( - 10 , 11 )]
# 求解应变量
y_val = [ 5 * x * * 2 for x in x_val]
print (x_val)
print (y_val)
# 设置matplotlib作图工具
fig, ax = plt.subplots()
ax.plot(x_val, y_val)
ax. set (xlabel = 'x(independentVariable)' , ylabel = 'y(strain)' , title = 'On the equation of a quadratic function' )
ax.grid()
# 保存图片
fig.savefig( "test.png" )
# 展示图片
plt.show()
|
到此这篇关于python绘制一元二次方程曲线的实例分析的文章就介绍到这了,更多相关python一元二次方程曲线的绘制内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://www.py.cn/jishu/jichu/31390.html