代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/361295/10058961
m ex020900.m
% Example 2.9
%
% x(n)=[3,11,7,0,-1,4,2]; nx = [-3:3]
% y(n)=x(n-2)+w(n)
% ryx = cross(y,x)
%
% noise sequence 1
x = [3, 11, 7, 0, -1, 4, 2]; nx=[-3:3]; % given signal x(n)
[y,ny] = sigshift(x,nx,2);
www.eeworm.com/read/164583/10100694
h scluster.h
/*-----------------------------------------------------------------------------
author : Bernhard Knab, Benjamin Georgi
filename : ghmm/ghmm/scluster.h
created : TIME: 15:53:53
www.eeworm.com/read/164583/10101022
h ghmm_sequences.h
/*
* created: 29 Jan 2002 by Peter Pipenbacher
* authors: Peter Pipenbacher (pipenb@zpr.uni-koeln.de)
* file : $Source: /cvsroot/ghmm/ghmm/ghmm++/GHMM_Sequences.h,v $
* $Id: GHMM_Sequences.h,v 1
www.eeworm.com/read/359976/10113008
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/359804/10124223
m gray2bi.m
function b = gray2bi( g )
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %
%% GRAY2BI converts Gray encoded se
www.eeworm.com/read/163856/10142401
c flash_f300.c
//-----------------------------------------------------------------------------
// FLASH_F30x.c
//-----------------------------------------------------------------------------
// Copyright 2002 Cyg
www.eeworm.com/read/163777/10145782
m ex020900.m
% Example 2.9
%
% x(n)=[3,11,7,0,-1,4,2]; nx = [-3:3]
% y(n)=x(n-2)+w(n)
% ryx = cross(y,x)
%
% noise sequence 1
x = [3, 11, 7, 0, -1, 4, 2]; nx=[-3:3]; % given signal x(n)
[y,ny] = sigshift(x
www.eeworm.com/read/359245/10159476
m exa1_15.m
% exa1-15_slope_d.m for example 1-15
% slope sequence
clear all;
N=32;
k=4;
B=3;
x=[zeros(1,k) ones(1,N-k)];
for i=1:N
x(i)=B*x(i)*(i-k);
end
xn=0:N-1;
stem(xn,x)
axis([-1 32 0 90])
www.eeworm.com/read/359245/10159522
m exa1_13.m
% exa1-13_arbitrary_d.m for example 1-13
% arbitrary sequence
clear all;
N=8;
x=zeros(1,N);
x(1)=8.0;
x(2)=3.4;
x(3)=1.8;
x(4)=5.6;
x(5)=2.9;
x(6)=0.7;
xn=0:N-1;
stem(xn,x)
axis([-1 8 0
www.eeworm.com/read/359240/10159886
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