我正在编写一个程序来计算旋转固体的体积。第一步是计算积分。我正在使用scipy.integrate
它,但我无法找出获得方程式的最佳方法(如x=x**2
命令行中的输入。我最初计划添加一个参数“相对于:x|y”,然后采用作为 lambda 函数。不幸的是,argparse
不会将 lambda 作为参数类型,并且尝试使用字符串构造 lambda ( f = lambda x: args.equation
) 只会返回一个字符串(可以理解)。
这是我到目前为止所得到的:
import sys
import argparse
import math
from scipy import integrate
parser = argparse.ArgumentParser(description='Find the volume of the solid of rotation defined')
parser.add_argument('equation', help='continous function')
parser.add_argument('a', type=float, help='bound \'a\'')
parser.add_argument('b', type=float, help='bound \'b\'')
parser.add_argument('-axis', metavar='x|y', help='axis of revolution')
args = parser.parse_args()
def volume(func, a, b, axis=None):
integral = integrate.quad(func, a, b)
return scipy.py * integral
print volume(args.equation, args.a, args.b)
任何建议将不胜感激谢谢