How to plot two different functions in the same graph in Python

前端 未结 0 1270
借酒劲吻你
借酒劲吻你 2020-11-28 22:56

I have this function:

from math import e

# f(x) = (e^3/3) - x
def ff(x):
    return e**((x**3)/3 - x)

This is how its plot looks like using

相关标签:
回答
  • 消灭零回复
提交回复
热议问题