python怎么用函数算体积 python计算体积

主机教程 建站分享 2年前 (2022-11-05) 169次浏览

文章摘要:python怎么用函数算体积 python计算体积

python使用integrate函数计算球体体积,具体方法如下: from scipy import int […]

python使用integrate函数计算球体体积,具体方法如下:

from scipy import integrate

import numpy as np

import time

start=time.clock()

def half_circle(x):

return (1-x**2)**0.5

def half_sphere(x,y):

return (1-x**2-y**2)**0.5

volume,error=integrate.dblquad(half_sphere,-1,1,

lambda x: -half_circle(x),

lambda x: half_circle(x))

end=time.clock()

print('{}
{}
{}'.format(volume,error,np.pi*4/3/2))

print('time={} Sconds'.format(end-start))


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么用函数算体积 python计算体积
文章链接:http://www.7966.org/post/14922.html
转载请注明出处

喜欢 (0)