代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/423536/10553190
m cm_dpske.m
function [enc_comp] = cm_dpske(E,M,mapping,sequence);
% [enc_comp] = cm_dpske(E,M,mapping,sequence)
% CM_DPSKE differentially encodes a sequence.
% E is the average energy, M is the number of c
www.eeworm.com/read/160223/10555499
m sigmult.m
function [y,n] = sigmult(x1,n1,x2,n2)
% implements y(n) = x1(n)*x2(n)
% -----------------------------
% [y,n] = sigmult(x1,n1,x2,n2)
% y = product sequence over n, which includes n1 and n2
% x1 = f
www.eeworm.com/read/160223/10555520
m sigadd.m
function [y,n] = sigadd(x1,n1,x2,n2)
% implements y(n) = x1(n)+x2(n)
% -----------------------------
% [y,n] = sigadd(x1,n1,x2,n2)
% y = sum sequence over n, which includes n1 and n2
% x1 = first s
www.eeworm.com/read/277957/10590862
m exa1_11.m
% exa1-11_unit_pulse_d.m for example 1-11
% unit pulse sequence
clear all;
N=64;
x=zeros(1,N);
x(1)=1;
xn=0:N-1;
stem(xn,x)
axis([-1 65 0 1.1])
www.eeworm.com/read/277957/10590906
m exa1_18.m
% exa1-18_real_exponent_d.m for example 1-18
% real exponent sequence
clear all;
N=32;
A=3;
a=0.7;
xn=0:N-1;
x=A*a.^xn;
stem(xn,x)
www.eeworm.com/read/277957/10590953
m exa1_39.m
% exa1-39_hamming_interative.m for example 1-39
% Hamming iterative sequence
clear all;
p = hamming(32);
t = 0:320; d = (0:9)'*32;
y = pulstran(t,d,p);
plot(t,y)
www.eeworm.com/read/277957/10590973
m exa1_19.m
% exa1-19_complex_exponent_d.m for example 1-19
% complex exponent sequence
clear all;
N=32;
A=3;
a=0.7;
w=314;
xn=0:N-1;
x=A*exp((a+j*w)*xn)
stem(xn,x)
www.eeworm.com/read/277957/10590998
m exa1_16.m
% exa1-16_sine_d.m for example 1-16
% sine sequence
clear all;
N=32;
A=3;
f=100;
fai=1.2;
xn=0:N-1;
x=A*sin(2*pi*f*(xn/N)+fai);
stem(xn,x)
axis([-1 32 -3.2 3.2])
www.eeworm.com/read/158750/10731440
m sigadd.m
function [y,n] = sigadd(x1,n1,x2,n2)
% implements y(n) = x1(n)+x2(n)
% -----------------------------
% [y,n] = sigadd(x1,n1,x2,n2)
% y = sum sequence over n, which includes n1 and n2
% x1 = first s
www.eeworm.com/read/158750/10731613
m sigmult.m
function [y,n] = sigmult(x1,n1,x2,n2)
% implements y(n) = x1(n)*x2(n)
% -----------------------------
% [y,n] = sigmult(x1,n1,x2,n2)
% y = product sequence over n, which includes n1 and n2
% x1 = f