matlab中求不定积分的问题为什么下面的不定积分MABLAB不给出结果?命令:syms f x a;f=x^2*(a^2-x^2)^0.5;int(f,x)结果:ans =int(x^2*(a^2 - x^2)^(1/2),x)

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/04 22:41:52
matlab中求不定积分的问题为什么下面的不定积分MABLAB不给出结果?命令:syms f x a;f=x^2*(a^2-x^2)^0.5;int(f,x)结果:ans =int(x^2*(a^2 - x^2)^(1/2),x)

matlab中求不定积分的问题为什么下面的不定积分MABLAB不给出结果?命令:syms f x a;f=x^2*(a^2-x^2)^0.5;int(f,x)结果:ans =int(x^2*(a^2 - x^2)^(1/2),x)
matlab中求不定积分的问题
为什么下面的不定积分MABLAB不给出结果?
命令:
syms f x a;
f=x^2*(a^2-x^2)^0.5;
int(f,x)
结果:
ans =
int(x^2*(a^2 - x^2)^(1/2),x)

matlab中求不定积分的问题为什么下面的不定积分MABLAB不给出结果?命令:syms f x a;f=x^2*(a^2-x^2)^0.5;int(f,x)结果:ans =int(x^2*(a^2 - x^2)^(1/2),x)
没有问题啊,程序运行后,可以得到结果.
>> int(f,x)
ans =
-1/4*x*(a^2-x^2)^(3/2)+1/8*a^2*x*(a^2-x^2)^(1/2)+1/8*a^4*atan(x/(a^2-x^2)^(1/2))