代码搜索结果
找到约 18,795 项符合
X 的代码
ch3_18.m
x=(0:0.1:1)';
y=([-0.01 0.045 0.12 0.2 0.33 0.52 0.67 0.95 1.2 1.45 1.78])';
sumarize11_2_2wp.m
[x,y,z] = cylinder;
I = imread('testpat1.png');
warp(x,y,z,I);
quad_trace.m
x= [18 0.0000000000 5.00000000e+000 47.5878647956;
23 0.0000000000 4.58758548e-001 3.0559374287;
28 0.0000000000 4.20918810e-002 0.2175395217;
33
ch6_3.m
x=0:0.2:10;
y=0.25*x+20*sin(x);
plot(x,y,'ro');
ch6_2.m
X='-10x^2+8x^2-x^3+4x^5+x^3-10+9-x^7';
P=str2poly(X)
Str=poly2str(P)
ch2_100.m
x = strmatch('max', strvcat('max', 'minimax', 'maximum'))
ch2_101.m
x=rand(1,10);
disp(['向量x中的最大值为:' num2str((max(x)))]);
ch2_3.m
x=5;
z=complex(x);
ch2_2.m
x=5;
y=10;
z=complex(x,y);
ch2_79.m
x = (b ~= 0) && (a/b > 1)