代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/196830/8055884
m conv_tp.m
function [y,H]=conv_tp(h,x)
% Linear Convolution using Toeplitz Matrix
% ----------------------------------------
% [y,H] = conv_tp(h,x)
% y = output sequence in column vector form
% H = Toeplitz
www.eeworm.com/read/196830/8055945
m ovrlpsav.m
function [y] = ovrlpsav(x,h,N)
% Overlap-Save method of block convolution
% ----------------------------------------
% [y] = ovrlpsav(x,h,N)
% y = output sequence
% x = input sequence
% h = impu
www.eeworm.com/read/396882/8085467
c alg38.c
#include
#include
#include
/* generates:
original element sequence:
0 1 1 2 3 5 8 13 21 34
sequence after applying remove_if < 10:
13 21 34
www.eeworm.com/read/396882/8085492
c alg36.c
#include
#include
#include
int main()
{
vector< int, allocator > vec;
for ( int ix = 0; ix < 20; ix++ )
vec.push_back( ix );
random_shuffle(
www.eeworm.com/read/396882/8085600
c alg49.c
#include
#include
#include
/* generates:
original element sequence of first container:
0 1 2 3 4 5 6 7 8 9
original element sequence of second cont
www.eeworm.com/read/296279/8113049
txt optimal+solution+for+jsp.txt
文件la0i.txt的格式如下:
sequence[0][0] p[0][0] sequence[0][1] p[0][1] sequence[0][2] p[0][2] sequence[0][3] p[0][3]
sequence[1][0] p[1][0] sequence[1][1] p[1][1] sequence[1][2] p[1][2] sequence[1][3] p[1]
www.eeworm.com/read/196122/8114107
m symbols_to_bits.m
% code the dominant and subordinate pass symbols using AC
clear
%clc
load filename output
sym=sym(1:486);
lim=length(sym)+1;
sequence=[];
pass=0;
ii=1;
while ii
www.eeworm.com/read/296235/8115708
scm queens.scm
;*******************************************************************************************************
;程序名称:程序设计语言大作业--Scheme语言的八皇后问题
;程序内容:八皇后
;作者:张宏基 051221136
;日期:2008年4月1号
;***************
www.eeworm.com/read/196069/8116363
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/196069/8116710
m conv_tp.m
function [y,H]=conv_tp(h,x)
% Linear Convolution using Toeplitz Matrix
% ----------------------------------------
% [y,H] = conv_tp(h,x)
% y = output sequence in column vector form
% H = Toeplitz