matlab数学表达式的源代码怎么写
发布网友
发布时间:2022-04-26 13:22
我来回答
共3个回答
热心网友
时间:2022-06-28 14:23
clear all;clc;
hh=[1,4,7,10];
xx=-5:0.01:5;
x=repmat(xx,length(hh),1);
h=repmat(hh',1,length(x));
Hx=atan(h.*(x+0.1)./(x+0.1).^2)-atan(h.*(x-0.1)./(x-0.1).^2);
plot(x.',Hx.');
热心网友
时间:2022-06-28 14:24
clear all;clc;
hh=[1,4,7,10];
xx=-5:0.01:5;
x=repmat(xx,length(hh),1);
h=repmat(hh',1,length(x));
Hx=atan(h.*(x+0.1)./(x+0.1).^2)-atan(h.*(x-0.1)./(x-0.1).^2);
plot(x.',Hx.');来自:求助得到的回答
热心网友
时间:2022-06-28 14:24
请明确是要画3维曲面还是3维曲线?
令:Hx和Hy什么关系?是独立的2个图吧?追问这是两个独立的函数,绘制出两个二维的曲线图
追答你先看看第一个图吧,感觉很不好看:
clear all;clc;
hh=[1,4,7,10];
xx=-5:0.01:5;
x=repmat(xx,length(hh),1);
h=repmat(hh',1,length(x));
Hx=atan(h.*(x+0.1)./(x+0.1).^2)-atan(h.*(x-0.1)./(x-0.1).^2);
plot(x.',Hx.');