代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/366065/9834784
3 backslash.3
'\"
'\" Copyright (c) 1989-1993 The Regents of the University of California.
'\" Copyright (c) 1994-1996 Sun Microsystems, Inc.
'\"
'\" See the file "license.terms" for information on usage and redist
www.eeworm.com/read/365527/9858428
m exa4_7_1.m
function sequence=collatz(n)
%柯雷茨(Collatz)猜想
% 对于任意的正整数n:
% 如果n是偶数则除以2
% 如果是奇数则乘3加1
% 重复计算,直至结果为1%
sequence = n;
next_value = n;
while next_value > 1
if rem(next_value,2)==0
www.eeworm.com/read/365029/9881678
cpp henikoffweight.cpp
#include "muscle.h"
#include "msa.h"
/***
Compute Henikoff weights.
Steven Henikoff and Jorja G. Henikoff (1994), Position-based sequence weights.
J. Mol. Biol., 243(4):574-578.
Award each d
www.eeworm.com/read/364700/9897982
h global.h
/* global.h, global variables, function prototypes */
/* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
/*
* Disclaimer of Warranty
*
* These
www.eeworm.com/read/167376/9970796
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/166765/10000047
m generatedata.m
function information=generatedata(K)
% generate a two-weight sequence which is long k,k>108;
information=zeros(1,K);
information(101)=1;
information(108)=1;
www.eeworm.com/read/362152/10015601
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/127304/10041334
plg sample.plg
Build Log
--------------------Configuration: sample - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\WEM143
www.eeworm.com/read/361612/10043798
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/361452/10051377
m gray2bi.m
function b = gray2bi( g )
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %
%% GRAY2BI converts Gray encoded se