代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/130982/14164227
sci figaro3d.sci
function [fc]=figaro3d(srf,vtx,%simp,fc,BB,h)
//function [fc] = figaro3d(srf,vtx,simp,fc,BB,h);
//
//This function plots the solution as a 3D object crossed at the plane z=h
//within the 3D boundari
www.eeworm.com/read/130982/14164275
sci set_electrodes.sci
function [ele_face,sels,cnts,VV]=set_electrodes(vtx,srf,ele_face,sels,cnts,VV)
//function [ele_face,sels,cnts,VV] = set_electrodes(vtx,srf,ele_face,sels,cnts,VV);
//
//You need to call this function
www.eeworm.com/read/130982/14164327
sci~ demo_real.sci~
function []=demo_real()
clear;
//! clc ignored
// clc
;
disp('This is a demo for reconstructing real impedance changes');
disp(mtlb_sprintf('%s','\n'));
mtlb_load('datareal','srf','vtx','simp');
www.eeworm.com/read/232058/14209418
m ladrfilt.m
function [y] = ladrfilt(K,V,x)
% LATTICE/LADDER form realization of IIR filters
% ----------------------------------------------
% [y] = ladrfilt(K,V,x)
% y = output sequence
% K = LATTICE (refle
www.eeworm.com/read/231449/14233527
m program_02_7.m
% Program 2_7
% Computation of cross-correlation sequence
%
colordef black;
x = input('Type in the reference sequence = ');
y = input('Type in the second sequence = ');
% Compute the correlation
www.eeworm.com/read/231449/14233528
m program_03_06.m
% Program 3_6
% Illustration of Overlap-Add Method
%
% Generate the noise sequence
colordef black;
R = 64;
d = rand(R,1)-0.5;
% Generate the uncorrupted sequence and add noise
for m = 1:1:R;
www.eeworm.com/read/231449/14233548
m program_10_1.m
% Program 10_1
% Illustration of Up-Sampling by an Integer Factor
%
clf;
N = input('Input length = ');
L = input('Up-sampling Factor = ');
fo = input('Input signal frequency = ');
% Generate t
www.eeworm.com/read/231449/14233552
m program_10_2.m
% Program 10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
N = input('Output length = ');
M = input('Down-sampling Factor = ');
fo = input('Input signal frequency = ');
% Genera
www.eeworm.com/read/231449/14233584
m program_03_05.m
% Program 3_5
% Linear Convolution Via the DFT
%
% Read in the two sequences
colordef black;
x = input('Type in the first sequence = ');
h = input('Type in the second sequence = ');
% Determi
www.eeworm.com/read/231449/14233632
m program_02_8.m
% Program 2_8
% Computation of Autocorrelation of a
% Noise Corrupted Sinusoidal Sequence
%
colordef black;
N = 96;
n = 1:N;
x = cos(pi*0.25*n); % Generate the sinusoidal sequence
d = rand(1