代码搜索结果
找到约 2,116 项符合
Y 的代码
y.m
function r = y(q)
% Y Extracts the y component of the vector part of a quaternion.
% Copyright
example2_9.m
Y=[3 1 2
8 7 5
5 3 4
9 3 2];
area(Y)
grid on
set(gca,'layer','top');
a56.m
y=randn(1,1000);
thr1=thselect(y,'rigrsure')
thr2=thselect(y,'sqtwolog')
thr3=thselect(y,'heursure')
thr4=thselect(y,'minimaxi')
a55.m
y=linspace(.1,1,100);
thr=0.28;
ythard=wthresh(y,'h',thr);
ytsoft=wthresh(y,'s',thr);
subplot(2,2,1);
plot(y);
title('原始信号');
subplot(2,2,3);
plot(ythard);
title('硬阈值信号');
s
b93.m
Y=[3 1 2
8 7 5
5 3 4
9 3 2];
area(Y)
grid on
set(gca,'layer','top');
ex3_9.m
y=0;
n=100;
for i=1:n
y=y+1/(2*i-1);
end
y