代码搜索:sequence

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

代码结果 10,000
www.eeworm.com/read/493843/6391505

m music.m

function Px = music(x,p,M) %MUSIC Frequency estimation using the MUSIC algorithm. %----- %USAGE Px=music(x,p,M) % % The input sequence x is assumed to consist of p complex % exponentials in whit
www.eeworm.com/read/492748/6408474

cpp lsc.cpp

#include #include #include #include #define N 20 char b[N+1][N+1]; void LCSlength(int m,int n,char x[], char y[]) { char str[20]; //临时buffer
www.eeworm.com/read/488978/6480839

man hmmer.man

.TH "hmmer" 1 "Oct 2003" "HMMER 2.3.2" "HMMER Manual" .SH NAME .TP HMMER - profile hidden Markov model software .SH SYNOPSIS .TP .B hmmalign Align multiple sequences to a profile HMM. .TP .B hmmbu
www.eeworm.com/read/488978/6480934

c emit.c

/************************************************************ * HMMER - Biological sequence analysis with profile HMMs * Copyright (C) 1992-2003 Washington University School of Medicine * All Right
www.eeworm.com/read/488978/6480965

c weight.c

/***************************************************************** * HMMER - Biological sequence analysis with profile HMMs * Copyright (C) 1992-2003 Washington University School of Medicine * All
www.eeworm.com/read/488978/6480986

c translate.c

/***************************************************************** * HMMER - Biological sequence analysis with profile HMMs * Copyright (C) 1992-2003 Washington University School of Medicine * All
www.eeworm.com/read/488978/6481002

c sfetch_main.c

/***************************************************************** * HMMER - Biological sequence analysis with profile HMMs * Copyright (C) 1992-2003 Washington University School of Medicine * All
www.eeworm.com/read/488109/6496866

c fet140_adc12_08.c

//****************************************************************************** // MSP-FET430P140 Demo - ADC12, Sequence of Conversions (non-repeated) // // This example shows how
www.eeworm.com/read/488224/6498590

m dnsample.m

function xd = dnsample(x,L) % down sampling for a sequence with n>=0 % L - the down sampling ratio m = 1 : L: length(x); xd = x(m);
www.eeworm.com/read/488224/6498613

m upsample.m

function xu = upsample(x,L) % upsampling for a sequence with n>=0 % L - the upsampling ratio xu = [x; zeros(L-1,length(x))]; xu = (xu(:))';