python编写程序绘制下列数学表达式的图像: 多项式f(x) = 4x^5 − 10x^3 + 7x + x^(-2) + 10的图像。给出代码
时间: 2024-01-22 13:04:19 浏览: 116
多项式计算程序
以下是Python代码,使用matplotlib库绘制多项式f(x) = 4x^5 − 10x^3 + 7x + x^(-2) + 10的图像:
```python
import numpy as np
import matplotlib.pyplot as plt
def f(x):
return 4*x**5 - 10*x**3 + 7*x + x**(-2) + 10
x = np.linspace(-5, 5, 1000)
y = f(x)
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('f(x) = 4x^5 − 10x^3 + 7x + x^(-2) + 10')
plt.show()
```
运行该程序,将会得到一张多项式f(x)的图像。
阅读全文