matplotlib 一张图多个图,如何在matplotlib中绘制同一个图上的多个函数? -尊龙游戏旗舰厅官网
尊龙游戏旗舰厅官网
收集整理的这篇文章主要介绍了
matplotlib 一张图多个图,如何在matplotlib中绘制同一个图上的多个函数?
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
how could i plot the following 3 functions (i.e. sin, cos and the addition), on the domain t, on the same figure?
from numpy import *
import math
import matplotlib.pyplot as plt
t = linspace(0, 2*math.pi, 400)
a = sin(t)
b = cos(t)
c = a b
尊龙游戏旗舰厅官网的解决方案
to plot multiple graphs on the same figure you will have to do:
from numpy import *
import math
import matplotlib.pyplot as plt
t = linspace(0, 2*math.pi, 400)
a = sin(t)
b = cos(t)
c = a b
plt.plot(t, a, 'r') # plotting t, a separately
plt.plot(t, b, 'b') # plotting t, b separately
plt.plot(t, c, 'g') # plotting t, c separately
plt.show()
总结
以上是尊龙游戏旗舰厅官网为你收集整理的matplotlib 一张图多个图,如何在matplotlib中绘制同一个图上的多个函数?的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇:
- 下一篇: vue中地图怎么标记数据库传过来的点_【