代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/428214/8883392
m despread.m
% Program 5-8
% despread.m
%
% Data despread function.
% Programmed by yixiongshu.2006.8.9
function [iout,qout]=despread(idata,qdata,code1)
%
% idata : ich data sequence.
% qdata : qch data se
www.eeworm.com/read/186987/8886064
m !circshi.m
function y = circshift(x,M)
% Develops a sequence y obtained by
% circularly shifting a finite-length
% sequence x by M samples
if abs(M) > length(x)
M = rem(M,length(x));
end
if M < 0
M = M + lengt
www.eeworm.com/read/186987/8886077
m p3_2.m
% Program P3_2
% Time-Shifting Properties of DTFT
clf;
w = -pi:2*pi/255:pi; wo = 0.4*pi; D = 10;
num = [1 2 3 4 5 6 7 8 9];
h1 = freqz(num, 1, w);
h2 = freqz([zeros(1,D) num], 1, w);
subplot(2,2,1)
pl
www.eeworm.com/read/186987/8886096
m p3_3.m
% Program P3_3
% Frequency-Shifting Properties of DTFT
clf;
w = -pi:2*pi/255:pi; wo = 0.4*pi;
num1 = [1 3 5 7 9 11 13 15 17];
L = length(num1);
h1 = freqz(num1, 1, w);
n = 0:L-1;
num2 = exp(wo*i*n).*n
www.eeworm.com/read/186987/8886106
m p3_6.m
% Program P3_6
% Time Reversal Property of DTFT
clf;
w = -pi:2*pi/255:pi;
num = [1 2 3 4];
L = length(num)-1;
h1 = freqz(num, 1, w);
h2 = freqz(fliplr(num), 1, w);
h3 = exp(w*L*i).*h2;
subplot(2,2,1)
www.eeworm.com/read/428158/8889546
m gray2bi.m
function b = gray2bi( g )
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %
%% GRAY2BI converts Gray encoded se
www.eeworm.com/read/186716/8914572
m invert.m
function [out] = invert(in)
% INVERT ...... Inverts a binary sequence such that {1,0,1} becomes {0,1,0}.
% AUTHORS : M. Zeytinoglu & N. W. Ma
% Department of Electrical & Computer
www.eeworm.com/read/186716/8914590
m quantize.m
function [out] = quantize(x,no_bits,flag)
% QUANTIZE .... Maps an analog sequence sequence into a quantized sequence.
%
% QUANTIZE(X,N) Takes the analog input sequence (analog within the limits
www.eeworm.com/read/427304/8952648
c transmitter.c
//transmitter.c Transmits voice as a BPSK signal
#include "dsk6713_aic23.h" //codec-DSK support file
#include
#include "lp1500.cof" //1500 Hz coeff lowpass filter
Uint32 fs=D
www.eeworm.com/read/427211/8966064
m test_hmm_vitdecd_long.m
%% settings
N = 4; % number of states
T = 8192; % length of data sequence
No= 8; % number of discrete outputs
%% random parameters
% transition matrix, a(i,j):=p(s_t+1=j|s_t=i)