代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/317833/13495796
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,
www.eeworm.com/read/317833/13495939
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
www.eeworm.com/read/317053/13511139
m program_02_7.m
% Program 2_7
% Computation of cross-correlation sequence
%
colordef black;
x = input('Type in the reference sequence = ');
y = input('Type in the second sequence = ');
% Compute the correlation
www.eeworm.com/read/317053/13511140
m program_03_06.m
% Program 3_6
% Illustration of Overlap-Add Method
%
% Generate the noise sequence
colordef black;
R = 64;
d = rand(R,1)-0.5;
% Generate the uncorrupted sequence and add noise
for m = 1:1:R;
www.eeworm.com/read/317053/13511159
m program_03_05.m
% Program 3_5
% Linear Convolution Via the DFT
%
% Read in the two sequences
colordef black;
x = input('Type in the first sequence = ');
h = input('Type in the second sequence = ');
% Determi
www.eeworm.com/read/317053/13511183
m program_02_8.m
% Program 2_8
% Computation of Autocorrelation of a
% Noise Corrupted Sinusoidal Sequence
%
colordef black;
N = 96;
n = 1:N;
x = cos(pi*0.25*n); % Generate the sinusoidal sequence
d = rand(1
www.eeworm.com/read/315311/13546289
html file-syntax.html
Xlib Programming Manual: Resource File Syntax
15.1 Resource File Syntax
The syntax of a resource file is a sequence of resource line
www.eeworm.com/read/313963/13577793
m ip_07_04.m
% MATLAB script for Illustrative Problem 7.4
clear
mapping=[0 1 3 2 7 6 4 5]; % for Gray mapping
M=8;
E=1;
sequence=[0 1 0 0 1 1 0 0 1 1 1 1 1 1 0 0 0 0];
[e]=cm_dpske(E,M,mapping,sequenc
www.eeworm.com/read/308670/13696573
c tmp-name.c
/*-*/
/********************************************************
* Question: *
* Why does the following program print *
* Name1: @$@#$#@$@ *
* (Your results may vary)? *
***************
www.eeworm.com/read/308670/13696794
c tmp2.c
/*-*/
/********************************************************
* Question: *
* We fixed the problem in the last question, but *
* now we have another. What does the following *
* program pr