代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/488978/6480975
c sindex_main.c
/*****************************************************************
* HMMER - Biological sequence analysis with profile HMMs
* Copyright (C) 1992-2003 Washington University School of Medicine
* All
www.eeworm.com/read/488978/6480976
c seqsplit_main.c
/*****************************************************************
* HMMER - Biological sequence analysis with profile HMMs
* Copyright (C) 1992-2003 Washington University School of Medicine
* All
www.eeworm.com/read/488978/6480983
c seqstat_main.c
/*****************************************************************
* HMMER - Biological sequence analysis with profile HMMs
* Copyright (C) 1992-2003 Washington University School of Medicine
* All
www.eeworm.com/read/488978/6481003
c shuffle_main.c
/*****************************************************************
* HMMER - Biological sequence analysis with profile HMMs
* Copyright (C) 1992-2003 Washington University School of Medicine
* All
www.eeworm.com/read/488978/6481009
h rk.h
/*****************************************************************
* HMMER - Biological sequence analysis with profile HMMs
* Copyright (C) 1992-2003 Washington University School of Medicine
* All
www.eeworm.com/read/488349/6493567
c fet440_adc12_06.c
//******************************************************************************
// MSP-FET430P440 Demo - ADC12, Repeated Sequence of Conversions
//
// This example shows how to perform a repeate
www.eeworm.com/read/488109/6496830
c fet140_adc12_05.c
//******************************************************************************
// MSP-FET430P140 Demo - ADC12, Repeated Sequence of Conversions
//
// This example shows how to perform a repeate
www.eeworm.com/read/488258/6500244
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/488258/6500250
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
www.eeworm.com/read/488258/6500252
m circshift.m
function y = circshift(x,M)
% Develops a sequence y obtained by
% circularly shifting a finite-length
% sequence x by M samples
if abs(M) > length(x)
M = rem(M,length(x));
end
if M < 0
M = M