想用matlab画一条曲线,x=30:1:200,y=atan(24/sqrt(x^2-36)) plot(x,y) 但
来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/19 17:15:59
想用matlab画一条曲线,x=30:1:200,y=atan(24/sqrt(x^2-36)) plot(x,y) 但却错误 Error using ==> m
想用matlab画一条曲线,
x=30:1:200,
y=atan(24/sqrt(x^2-36))
plot(x,y)
但却错误 Error using ==> mpower
Matrix must be square.
是怎么回事呢
想用matlab画一条曲线,
x=30:1:200,
y=atan(24/sqrt(x^2-36))
plot(x,y)
但却错误 Error using ==> mpower
Matrix must be square.
是怎么回事呢
x=30:1:200; % 英文状态下的标点符号
y=atan(24./sqrt(x.^2-36)); % 要加点
plot(x,y)
y=atan(24./sqrt(x.^2-36)); % 要加点
plot(x,y)
matlab,matlab如何画出 y=x-atan(3/x)^36*2/pi*x-atan(x/3)^35*6/pi;
matlab如何画y^2=sqrt(4*x.^2+1+c)-x.^2-1
用Matlab画y=sqrt(x^4+1)-10x^2 的图像
用matlab绘制空间曲线:曲线由z=sqrt(1-x^2-y^2),(x-1/2)^2+y^2=1/4确定
matlab中 >> x=-1:0.001:1; >> y=log((1+sqrt(1-x.^2))/x)+sqrt(1
如何用matlab绘出函数Z=(1/(sqrt(((1-x)^2)+(y^2))))+(1/(sqrt(((1+x)^2
证明不等式:x/(sqrt(y))+y/(sqrt(x))>=sqrt(x)+sqrt(y)
用matlab怎么画y=atan((x^2+(3x+1)^0.5+2(cosx)^2)/(x-7))的图像啊,急求
Matlab中,log10(y)=-0.5*log10(x)+1.8 ,请问如何画出plot(x,y)的曲线
用MATLAB 怎么 画 x = (y/4)*Sqrt[2 - y^2]
matlab中写入代码:x=0:0.1:1; y=(1+2*x)^(1/2) ; plot(x,y)
matlab中如何画图!看看x=-10:0.1:10; y=exp(-(x.- 1)^2);plot(x,y)是怎么回事