代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/159963/10583908
m crosscorrelation.m
% File: crosscorrelation.m
% ------------------------
% This function calculate the crosscorrelation of x(n) and s(n)
function[crosscorrelation] = crosscorrelation(m, signalvector_x, signalvector
www.eeworm.com/read/277957/10590884
m exa1_14.m
% exa1-14_unit_step_d.m for example 1-14
% unit step sequence
clear all;
N=32;
x=ones(1,N);
xn=0:N-1;
stem(xn,x)
axis([-1 32 0 1.1])
www.eeworm.com/read/277957/10590967
m exa1_12.m
% exa1-12_shift_unit_pulse_d.m for example 1-12
% shifted unit pulse sequence
clear all;
N=64;
k=20;
x=zeros(1,N);
x(k)=1;
xn=0:N-1;
stem(xn,x)
axis([-1 65 0 1.1])
www.eeworm.com/read/277957/10590989
m exa1_17.m
% exa1-17_complex_sine_d.m for example 1-17
% complex sine sequence
clear all;
N=32;
A=3;
w=314;
xn=0:N-1;
x=A*exp(j*w*xn);
stem(xn,x)
axis([-1 32 -3.2 3.2])
www.eeworm.com/read/159709/10621154
m invztrans.m
% According to ROC, inverse a transform function to a sequence.
%
function [SEQ, t] = InvZTrans(R, P, K, dividP, Leng)
% Parameters:
% R: Column vectors containing the residues
% P: Col
www.eeworm.com/read/158750/10731423
m hsolpsav.m
function [y] = hsolpsav(x,h,N)
% High-speed Overlap-Save method of block convolutions using FFT
% --------------------------------------------------------------
% [y] = hsolpsav(x,h,N)
% y = output s
www.eeworm.com/read/420640/10784690
c getbits.c
/* getbits.c, bit level routines */
/*
* All modifications (mpeg2decode -> mpeg2play) are
* Copyright (C) 1996, Stefan Eckart. All Rights Reserved.
*/
/
www.eeworm.com/read/275831/10794210
rb 11 - profiling your application.rb
#!/usr/bin/env ruby
# sequence_counter.rb
require 'profile'
total = 0
# Count the letter sequences containing an a, b, or c.
('a'..'zz').each do |seq|
['a', 'b', 'c'].each do |i|
if seq.index(i
www.eeworm.com/read/275831/10794392
rb 05 - reading mail with imap.rb
require 'net/imap'
conn = Net::IMAP.new('mail.myhost.com', 143)
conn.login('username', 'password')
#---
conn.examine('INBOX')
# Use Net::IMAP#select for read-only access
#---
conn.search(['FROM', 'ja
www.eeworm.com/read/349842/10796814
m hmm_generate.m
function out = HMM_generate(a,b,initial,seq_len)
% Generate a Markov sequence
%
% Inputs:
% a - Transition probability matrix
% b - Output generator matrix
% initial - Initial state
% seq