代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/195390/8159462
m despread.m
% Program 5-8
% despread.m
%
% Data despread function
%
% Programmed by M.Okita and H.Harada
%
function [iout, qout] = despread(idata, qdata, code1)
% *************************************
www.eeworm.com/read/195390/8159520
m spread.m
% Program 5-7
% spread.m
%
% Data spread function
%
% Programmed by M.Okita and H.Harada
%
function [iout, qout] = spread(idata, qdata, code1)
% *******************************************
www.eeworm.com/read/195389/8159590
m despread.m
% Program 5-8
% despread.m
%
% Data despread function
%
% Programmed by M.Okita and H.Harada
%
function [iout, qout] = despread(idata, qdata, code1)
% *************************************
www.eeworm.com/read/195389/8159639
m spread.m
% Program 5-7
% spread.m
%
% Data spread function
%
% Programmed by M.Okita and H.Harada
%
function [iout, qout] = spread(idata, qdata, code1)
% *******************************************
www.eeworm.com/read/195191/8170564
mfold-basic
#!/bin/sh
# This shell script folds an RNA or DNA sequence and creates output
# files.
LIBDIR=${MFOLDLIB:-$MFOLD/dat}
if [ $# = 0 ]; then
echo -e "Usage is\nmfold SEQ='file_name' with optional para
www.eeworm.com/read/295200/8180538
c test44x_adc12_05.c
//******************************************************************************
// MSP430-TEST44X Demo - ADC12, Repeated Sequence of Conversions
//
// This example shows how to perform a repeate
www.eeworm.com/read/194957/8182552
m 例4-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/394482/8222102
cpp list7-3.cpp
//Listing 7.3
//This Program demonstrates how one container can be
// used to construct another container
#include
#include
#include
using namespace std;
voi
www.eeworm.com/read/394482/8222104
cpp list7-2.cpp
// Listing 7.2 demonstrates how a constructor can be used to initialize a container
// with a certain number of objects initialized to a specific value.
#include
#include
usi