We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def fiitting(M=0),这个函数,返回值应该是return p_lsq[0] 因为leastsq的返回值是一个tuple,它里面有多个元素,第一个元素是(参数)的求解结果,所以返回值应该是p_lsq[0]??? https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.leastsq.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
def fiitting(M=0),这个函数,返回值应该是return p_lsq[0]
因为leastsq的返回值是一个tuple,它里面有多个元素,第一个元素是(参数)的求解结果,所以返回值应该是p_lsq[0]???
https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.leastsq.html
The text was updated successfully, but these errors were encountered: