代码搜索:sequence

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

代码结果 10,000
www.eeworm.com/read/300562/13905832

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/300562/13905945

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/237875/13923174

c fet140_adc12_06.c

//****************************************************************************** // MSP-FET430P140 Demo - ADC12, Repeated Sequence of Conversions // // Description: This example shows how to perf
www.eeworm.com/read/237874/13923485

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/300086/13936757

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/300086/13936788

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/237686/13937407

html find_end.html

find_end
www.eeworm.com/read/237664/13939467

m nrzi2nrz.m

%NRZI2NRZ(in) % This function translates a NRZI sequence of bits into NRZ. function out = NRZI2NRZ(in) a = zeros(1,length(in)); a(1) = in(1); for i=2:length(in) a(i) = xor(a(i-1),in(i)
www.eeworm.com/read/237664/13939472

m nrz2nrzi.m

%NRZ2NRZI(IN) % This function translates a NRZ sequence of bits into NRZI. function out = NRZ2NRZI(in) a = zeros(1,length(in)); a(1) = in(1); for i=2:length(in) a(i) = xor(in(i-1),in(i
www.eeworm.com/read/300060/13940518

txt oracle(day5).txt

一、alter table命令 alter table 命令用于修改表的结构(这些命令不会经常用): 增加字段: alter table 表名 add(字段字,字段类型) 删除字段: alter tbale 表名 drop column 字段; (8i 以后才支持) 给列改名:9.2.0才支持 alter table 表名 rename column 旧字段名 to