'SyntaxError:关键字不能是表达式

问题描述 投票:0回答:1

我想绘制这个数值解

import math as ma
import numpy as np  
import matplotlib.pyplot as plt

m=np.array([0, 1, 2, 3])    
x=np.linspace(0,1,1000)
plt.figure()
for i in range (4):
        plt.plot(x, ma.tan(ma.pi*5*x-m[i]*ma.pi/2)=- (0.954)**2*ma.sqrt(0.3**2/x**2-1))
plt.show()

但出现以下错误:

SyntaxError:关键字不能是表达式

matplotlib plot python-3.7
1个回答
0
投票

我想也许您想要:

for i in range (4):
    plt.plot(x, np.tan(np.pi*5*x - m[i]*np.pi/2))
    plt.plot(x, -0.954**2*np.sqrt(0.3**2/x**2-1))

我建议在使用数组时坚持使用NumPy;您也不需要math

© www.soinside.com 2019 - 2024. All rights reserved.