scipy

Python学习

杀马特。学长 韩版系。学妹 提交于 2020-09-29 16:37:16
Python 学习 提示:刚刚开始用python,希望慢慢学习,慢慢记录 提示:以下是本篇文章正文内容,下面案例可供参考 一、Python 数值积分函数 Python 提供了很多种用于不同情况下的积分函数 scipy.integrate.quad: 一重积分 scipy.integrate.dblquad: 二重积分 scipy.integrate. 三重积分 scipy.integrate.nquad: 多重积分 二、scipy.integrate.dblquad 关于 scipy.integrate.dblquad 的用法。 scipy.integrate.dblquad(func, a, b, gfun, hfun, args=(), epsabs=1.49e-08, epsrel=1.49e-08) Compute a double integral. Return the double (definite) integral of func(y, x) from x = a…b and y = gfun(x)…hfun(x). Parameters funccallable A Python function or method of at least two variables: y must be the first argument and x the second