问题 I'm having trouble getting the phase of a simple sine curve using the scipy fft module in python. I followed this tutorial closely and converted the matlab code to python. However, no matter what phase I use for the input, the graph always shows 3. What am I missing? import numpy as np import matplotlib.pyplot as plt import scipy.fftpack import cmath A=10 fc = 10 phase=60 fs=32#Sampling frequency with oversampling factor of 32 t = np.arange(0,2,1/fs) #Convert the phase shift to radians from