代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/463000/7190763
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/462162/7208101
h hw_ints.h
//*****************************************************************************
//
// hw_ints.h - Macros that define the interrupt assignment on Stellaris.
//
// Copyright (c) 2005,2006 Luminary M
www.eeworm.com/read/462157/7208274
h hw_ints.h
//*****************************************************************************
//
// hw_ints.h - Macros that define the interrupt assignment on Stellaris.
//
// Copyright (c) 2005,2006 Luminary M
www.eeworm.com/read/462150/7208476
h hw_ints.h
//*****************************************************************************
//
// hw_ints.h - Macros that define the interrupt assignment on Stellaris.
//
// Copyright (c) 2005,2006 Luminary M
www.eeworm.com/read/388300/7217505
oracle
create table books (
ID number(3),
BookName varchar2(20),
Press varchar2(20),
Author varchar2(20),
PressDate Date,
Price number(5,2),
Com varchar2(20),
books_count number(2),
borrowed_count n
www.eeworm.com/read/460952/7236982
m dopllecommseries.m
%张润宁论文中多普勒补偿问题,【2.^6-1=63】位m-序列(加噪声)
%改变fd的值可以改变多普勒频率的大小
%改变SNR的值可以改变信噪比的大小
clear all;
T=0.2*10.^-6; %子脉冲宽度T
B=1/T; %子脉冲带宽B=1/T
fd=0*B
www.eeworm.com/read/460016/7259001
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/459724/7265800
c fet140_adc12_06.c
//******************************************************************************
// MSP-FET430P140 Demo - ADC12, Repeated Sequence of Conversions
//
// Description: This example shows how to perf
www.eeworm.com/read/458533/7294836
c fet140_adc12_06.c
//******************************************************************************
// MSP-FET430P140 Demo - ADC12, Repeated Sequence of Conversions
//
// Description: This example shows how to perf
www.eeworm.com/read/458161/7303073
m cos4qam.m
%cos4qam.m: Costas loop for 4qam scale factor test
%crj jr, revised 12/26/02
clear all
clf
% create +/-1 sequence
s1=sign(rand([1,100])-0.5); N=length(s1);
s2=sign(rand([1,100])-0.5);
%