代码搜索:sequence

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

代码结果 10,000
www.eeworm.com/read/236066/14033723

c msp430x20x2_adc10_10.c

//****************************************************************************** // MSP430F20x2 Demo - ADC10, DTC Sample A2-0, AVcc, Single Sequence, DCO // // Description: Sample A3/A2/A1 as sin
www.eeworm.com/read/236065/14033921

c fet430_adc12_06.c

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

h asn1.h

/* asn1.h ASN.1 routines. Copyright (c) 2000 Dug Song $Id: asn1.h,v 1.2 2000/11/15 17:54:46 dugsong Exp $ */ #ifndef ASN1_H #define ASN1_H #define ASN1_INTEGER 2 #
www.eeworm.com/read/133137/14053850

h test.h

// test.h Include file for test.cc etc // W. Langdon cs.ucl.ac.uk 30 Jan 1995 // version "$Revision: 1.32 $" //Modifications (in reverse order) //WBL 18 Oct 1995 Support rand_test //WBL 17 Oct 1
www.eeworm.com/read/132953/14065432

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,sequence)
www.eeworm.com/read/132953/14065473

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 th
www.eeworm.com/read/235309/14074969

m evenodd.m

function[xe,xo,m]=evenodd(x,n) %奇偶合成 % if any(imag(x) ~=0) error('x is not a real sequence') end m=-fliplr(n); m1=min([m,n]);m2=max([m,n]);m=m1:m2; nm=n(1)-m(1);n1=1:length(n); x1=zeros(1
www.eeworm.com/read/204559/15336937

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/204559/15336943

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/204559/15336973

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