那位高手能告诉我怎么用matlab画函数y=x/(x^2+1)^(3/2)如题x=[-10:0.1:10]; y=x/(x^2+1)^(3/2); plot(x,y); 这个我试过.但弹出来句"?Error using ==> mpowerMatrix must be square."
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/30 01:56:51
那位高手能告诉我怎么用matlab画函数y=x/(x^2+1)^(3/2)如题x=[-10:0.1:10]; y=x/(x^2+1)^(3/2); plot(x,y); 这个我试过.但弹出来句"?Error using ==> mpowerMatrix must be square."
那位高手能告诉我怎么用matlab画函数y=x/(x^2+1)^(3/2)
如题
x=[-10:0.1:10];
y=x/(x^2+1)^(3/2);
plot(x,y);
这个我试过.但弹出来句"?Error using ==> mpower
Matrix must be square."
那位高手能告诉我怎么用matlab画函数y=x/(x^2+1)^(3/2)如题x=[-10:0.1:10]; y=x/(x^2+1)^(3/2); plot(x,y); 这个我试过.但弹出来句"?Error using ==> mpowerMatrix must be square."
我记不清老师是怎么说的了……但是有两个问题
1,X是一个数组,数组的每个值都参与运算时数组号后应该加点
2,函数比较复杂,可设置中间函数.
x=[-10:0.1:10];
h=x./(x.^2+1);
y=h.^(3/2);
plot(x,y);
x=[-10:0.1:10];
y=x/(x^2+1)^(3/2);
plot(x,y);
应该就是这样.....好几年没用过Matlab了...
有个矩阵的次方, 还有个矩阵中元素的次方, 那你试试这个
y=x/(x.^2+1).^(3/2);
不会,没用过那软件
x=[-10:0.1:10];
y=x/(x.^2+1).^(3/2);
plot(x,y);
已经测试过了,能行!