• 2022-06-03
    椭圆[img=155x76]17e43e625591db8.png[/img] 所围成的图形绕x轴旋转一周所得图形体积可以用MATLAB求解,其命令是( )
    A: >;>;syms x y a b>;>;int(pi*y^2,x,-a,a)
    B: >;>;syms x y a b>;>;f=b/a*sqrt(b^2-y^2)>;>;int(pi*f^2,x,-b,b)
    C: >;>;syms x y a b>;>;f=b/a*sqrt(a^2-x^2)>;>;int(pi*f^2,x,-a,a)
    D: >;>;syms x y a b>;>;int(pi*x^2,x,-a,a)