代码搜索:sequence

找到约 10,000 项符合「sequence」的源代码

代码结果 10,000
www.eeworm.com/read/148309/12475958

c fet440_adc12_05.c

//****************************************************************************** // MSP-FET430P440 Demo - ADC12, Repeated Sequence of Conversions // // This example shows how to perform a repeate
www.eeworm.com/read/335795/12498357

c alg38.c

#include #include #include /* generates: original element sequence: 0 1 1 2 3 5 8 13 21 34 sequence after applying remove_if < 10: 13 21 34
www.eeworm.com/read/335795/12498377

c alg36.c

#include #include #include int main() { vector< int, allocator > vec; for ( int ix = 0; ix < 20; ix++ ) vec.push_back( ix ); random_shuffle(
www.eeworm.com/read/335795/12498478

c alg49.c

#include #include #include /* generates: original element sequence of first container: 0 1 2 3 4 5 6 7 8 9 original element sequence of second cont
www.eeworm.com/read/248698/12545664

txt readme.txt

Sherwood算法消除最坏实例,以达到对任何实例都能有好的性能的效果 文件: rd_list.c --> create a random sequence of n integers not equal to each other list.c --> create a descending sequence of n integers not equal to each othe
www.eeworm.com/read/334935/12561052

m srexpand.m

function y = srexpand(x, L) %SREXPAND zero fills with L-1 zeros between each sample %-------- % Usage: Y = srexpand(X, L) % % insert L-1 zeros between each sample of the sequence X. %
www.eeworm.com/read/147096/12584228

m ss_mlsrs.m

function [seq]=ss_mlsrs(connections); % [seq]=ss_mlsrs(connections) % SS_MLSRS generates the maximal length shift register sequence when the % shift register connections are given as input to
www.eeworm.com/read/147096/12584897

m ip_07_04.m

% MATLAB script for Illustrative Problem 4, Chapter 7. 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,sequ
www.eeworm.com/read/248284/12585554

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,
www.eeworm.com/read/248284/12585575

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