代码搜索结果

找到约 10,000 项符合 E 的代码

e0649.m

H=ezmesh('x','y','sin(x).*cos(y)') Hparent=get(get(H,'Parent'),'Parent')

e0627.m

%方法1: t=0:0.1:20*pi; plot3(t,sin(t),cos(t)) xlabel('t'),ylabel('sin(t)'),zlabel('cos(t)');title('plot3'); %方法2: ezplot3('t','sin(t)','cos(t)')% 0 ≤ t ≤2*pi xlabel('t'),ylabel('sin(t)'),zlabel('

e0623.m

x=[2 -2 1 3 -1];y=[2 2 -2 1 -3];compass(x,y); title('Example of a Compass Plot');grid on

e0629.m

t=0:0.1:20*pi;plot3(sin(t),cos(t), sin(t).*cos(t)) xlabel('x');ylabel('y');zlabel('z'); title('plot3');

e0625.m

t=-pi:pi/200:pi; comet(t,tan(sin(t))-sin(tan(t)))

e0636.m

[x,y]=meshgrid(-2:0.1:2,-1:0.1:1);z=sin(x).*(1-cos(y)) surf(z);colormap([1 0 1]); %绘制三维曲面并设置色图为洋红色 mesh(z);colormap(autumn);

e0624.m

x = 1:10;y = sin(x);e = std(y)*ones(size(x));errorbar(x,y,e)

e0657.m

H=dialog('BackingStore','off', 'ButtonDownFcn' ,'if isempty(allchild(gcbf)),close(gcbf), end','MenuBar','none','Visible','on')

e0101.m

%plot the function sin(x) for 0

e0429.m

A=[2 2 -1 1;4 3 -1 2;8 3 -3 4;3 3 -2 -2] ; norm(A,1)%求A的1—范数 norm(A) %求A的2—范数 norm(A,inf) %求A的 范数