代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/157732/11667817
m program_2_8.m
% Program 2_8
% Computation of Autocorrelation of a
% Noise Corrupted Sinusoidal Sequence
%
N = 96;
n = 1:N;
x = cos(pi*0.25*n); % Generate the sinusoidal sequence
d = rand(1,N) - 0.5; % Genera
www.eeworm.com/read/157732/11667819
m program_2_7.m
% Program 2_7
% Computation of cross-correlation sequence
%
x = input('Type in the reference sequence = ');
y = input('Type in the second sequence = ');
% Compute the correlation sequence
n1 = l
www.eeworm.com/read/157653/11676802
c callback.c
/*
** 2005 May 23
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness f
www.eeworm.com/read/346772/11723830
m 高斯白噪的正弦信号.m
%----------------------------------------------------------------------------
% exa031001_fftfilt.m, for example 3.11.1
% to test fftfilt.m,and to finish the convolution of a long sequence with
%
www.eeworm.com/read/260217/11739275
lst tcp.lst
C51 COMPILER V7.50 TCP 12/14/2006 13:34:45 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE TCP
OBJECT MODULE PLACED IN TCP
www.eeworm.com/read/156653/11786092
m ex020200.m
% Chapter 02: Example 02.02: Signal Synthesis
%
figure(1); clf
n = -2:10; x = [1:7,6:-1:1];
% a) x1(n) = 2*x(n-5) - 3*x(n+4)
[x11,n11] = sigshift(x,n,5); [x12,n12] = sigshift(x,n,-4);
[x1,n1] = sigadd
www.eeworm.com/read/156653/11786095
m ex020500.m
% Example 2.5
%
% x(n)=[u(n)=u(n-10]; h(n)=(0.9)^n*u(n)
% y(n)=10*(1-(0.9)^(n+1))*(u(n)-u(n-10))+
% (10*(1-(0.9)^10)*(0.9)^(n-9))*u(n-10)
n = -5:50;
u1 = stepseq(0,-5,50); u2=stepseq(10,-5,50);
www.eeworm.com/read/156653/11786107
m ex021100.m
% Example 2.11
%
% x(n) = u(n)-u(n-10)
% h(n) = (0.9)^n * u(n)
% diff eqn: y(n) - 0.9y(n-1) = x(n)
%
b = [1]; a = [1,-0.9];
n = -5:50; x = stepseq(0,-5,50) - stepseq(10,-5,50);
y = filter(b,a,x);
subp
www.eeworm.com/read/156653/11786480
m cirshftt.m
function y = cirshftt(x,m,N)
% Circular shift of m samples wrt size N in sequence x: (time domain)
% -------------------------------------------------------------------
% [y] = cirshftt(x,m,N)
% y = o
www.eeworm.com/read/258470/11859851
lst tcp.lst
C51 COMPILER V7.50 TCP 12/14/2006 13:34:45 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE TCP
OBJECT MODULE PLACED IN TCP