代码搜索结果
找到约 2,116 项符合
Y 的代码
y.out
0 $accept : program $end
1 program : statement
2 | program statement
3 statement : comment return
4 | label ':' comment return
5 | label ':
mywgn.m
Y = floor(WGN(1, 10, 10, 'real'))
oplot0.dat
Y
+ *
* + *
kkspt0.dat
y( 0)=5.40000e+01 yy( 0)=5.68429e+01
y( 1)=1.45000e+02 yy( 1)=1.33629e+02
y( 2)=2.27000e+02 yy( 2)=2.44057e+02
y( 3)=3.59000e+02 yy( 3)=3.47943e+02
y( 4)=4.01000e+02 yy( 4)=3.93457e+02
gdfte0.dat
y( 0)=0.00000e+00
y( 1)=1.86090e-02
y( 2)=3.25359e-02
y( 3)=4.20480e-02
y( 4)=4.73684e-02
y( 5)=4.86842e-02
y( 6)=4.61538e-02
y( 7)=3.99123e-02
y( 8)=3.00752e-02
y( 9)=1.67423e-02
y(10)=0.
c94alt.m
Y=[0 0];
k=0:11;
f=[0 0 4.^(k)];
for m=1:length(k)
y=-6*Y(m+1)-9*Y(m)+2*f(m+2)+6*f(m+1);
Y=[Y y];
end
k=[0 0 k];
stem(k,Y)
c92.m
y=[1 2]; y=y';
k=-2:16; k=k';
for m=1:length(k)-2
Y=1.56*y(m+1)-0.81*y(m);
y=[y;Y];
end
stem(k,y)
c91.m
y=[1 2]; y=y';
k=-2:2; k=k';
fk=[0 0 0 1 1]';
for m=1:length(k)-2
Y=y(m+1)-0.24*y(m)+fk(m+2)-2*fk(m+1);
y=[y;Y];
end
[k y]
stem(k,y)
c96.m
Y=[4 13]; Y=Y';
k=0:10; k=k';
f=[5 8]; f=f';
for m=1:length(k)-2
y=5*Y(m+1)-6*Y(m)+f(m+1)-5*f(m);
Y=[Y;y];
F=3*(m+1)+5;f=[f;F];
end
stem(k,Y)