欢迎访问 生活随笔!

尊龙游戏旗舰厅官网

当前位置: 尊龙游戏旗舰厅官网 > > 编程问答 >内容正文

编程问答

matplotlib 一张图多个图,如何在matplotlib中绘制同一个图上的多个函数? -尊龙游戏旗舰厅官网

发布时间:2025/1/21 编程问答 10 豆豆
尊龙游戏旗舰厅官网 收集整理的这篇文章主要介绍了 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中绘制同一个图上的多个函数?的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得尊龙游戏旗舰厅官网网站内容还不错,欢迎将尊龙游戏旗舰厅官网推荐给好友。

网站地图