代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/442577/7649314
m power_control.m
function [signal_sequence]=power_control(Ps,signal_sequence);
%用一定的发送功率Ps发送信号
signal_sequence=signal_sequence*sqrt(Ps);
www.eeworm.com/read/441511/7669489
c fet140_adc12_06.c
//******************************************************************************
// MSP-FET430P140 Demo - ADC12, Repeated Sequence of Conversions
//
// Description: This example shows how to perf
www.eeworm.com/read/441462/7670179
m ident.m
function [f] = ident(u,y,d,lambda,f)
% [f] = ident(u,y,d,lambda,f)
% [f] = ident(u,y,d,lambda)
% [f] = ident(u,y,d)
%
% Identify SISO system recursively.
%
% Input parameters:
% - u
www.eeworm.com/read/440896/7679050
m p2_6.m
% Program P2_6.m
% Time Reversal Property of DTFT
close all;clear all;
w = -pi:2*pi/255:pi; num = [1 2 3 4];
L = length(num)-1;
h1 = freqz(num, 1, w); h2 = freqz(fliplr(num), 1, w);
h3 = exp(w*L
www.eeworm.com/read/440896/7679055
m p2_c2.m
% Program P2_3
% Frequency-Shifting Properties of DTFT
close all ; clear all;
w = -pi:2*pi/255:pi; wo = 0.8*pi;
num1 = [1 3 5 7 9 11 13 15 17];
L = length(num1);
h1 = freqz(num1, 1, w);
n = 0:L
www.eeworm.com/read/440896/7679059
m p2_3.m
% Program P2_3
% Frequency-Shifting Properties of DTFT
close all ; clear all;
w = -pi:2*pi/255:pi; wo = 0.4*pi;
num1 = [1 3 5 7 9 11 13 15 17];
L = length(num1);
h1 = freqz(num1, 1, w);
n = 0:L
www.eeworm.com/read/440896/7679064
m p2_2.m
% Program P2_2
% Time-Shifting Properties of DTFT
close all ; clear all;
w = -pi:2*pi/255:pi; wo = 0.4*pi; D = 10;
num = [1 2 3 4 5 6 7 8 9];
h1 = freqz(num, 1, w); h2 = freqz([zeros(1,D) num], 1
www.eeworm.com/read/440896/7679071
m p2_b2.m
% Program P2_2
% Time-Shifting Properties of DTFT
close all ; clear all;
w = -pi:2*pi/255:pi; wo = 0.4*pi; D = 20;
num = [1 2 3 4 5 6 7 8 9];
h1 = freqz(num, 1, w); h2 = freqz([zeros(1,D) num], 1
www.eeworm.com/read/440289/7690995
m conv_toe.m
%P2.14a
function [ytilde,H]=conv_toe(h,x)
% Linear Convolution using Toeplitz Matrix
% ----------------------------------------
% [ytilde,H] = conv_toe(h,x)
% ytilde = output sequence in column vector