代码搜索:n_delay

找到约 11 项符合「n_delay」的源代码

代码结果 11
www.eeworm.com/read/210588/15195508

c kernel.c

/* EXISTS AN INTERFACE PROGRAM TO MATLAB : KERMEX.C * *====================================================================* * Name of the function : kernel (void) * * Author
www.eeworm.com/read/210588/15195551

c cambifunb.c

/* interface program between Matlab and C language for AF.C */ #include "tftb.h" /* inputs */ #define SIGNAL prhs[0] #define TAU prhs[1] #define N_DOPPLER prhs[2] /* outpu
www.eeworm.com/read/455387/7372676

m watterson.m

function r=watterson(s,fs,fm,delay,A,fd,phai,SNR,inter) % s:input signal % M:multipath number A:gain factor fs:sample rate % fm:frequency spread delay:time delay (ms) fd:frequency shift phai:i
www.eeworm.com/read/210588/15195494

c caf2tfr.c

/* interface program between MATLAB and language C for the program AF2TFR.C */ #include "tftb.h" #define AF prhs[0] #define KERNEL prhs[1] #define TFR_OUT plhs[0]
www.eeworm.com/read/192551/8375559

m channel.m

function [out]=channel(in,fs,fd,n_delay,t_delay,p_delay) %in是输入码元,是一行矩阵,可以是实数也可以是复数 %fs是输入码元的比特率 %fd是多普勒频移 %n_delay是多径信道的径数 %t_delay是多径信道各径的时延时间 %p_delay是多径信道各径的功率db值 Ns=length(in); Ts=1
www.eeworm.com/read/289166/8570486

m channel.m

function [out]=channel(in,fs,fd,n_delay,t_delay,p_delay) %in是输入码元,是一行矩阵,可以是实数也可以是复数 %fs是输入码元的比特率 %fd是多普勒频移 %n_delay是多径信道的径数 %t_delay是多径信道各径的时延时间 %p_delay是多径信道各径的功率db值 Ns=length(in); Ts=1
www.eeworm.com/read/428105/8894972

m channel.m

function [out]=channel(in,fs,fd,n_delay,t_delay,p_delay) %in是输入码元,是一行矩阵,可以是实数也可以是复数 %fs是输入码元的比特率 %fd是多普勒频移 %n_delay是多径信道的径数 %t_delay是多径信道各径的时延时间 %p_delay是多径信道各径的功率db值 Ns=length(in); Ts=1
www.eeworm.com/read/386083/8765192

m delay1.m

% Shifts a vector by n_delay elements; fills initial elements with 0s % function y_out = delay1(y_in,n_delay); NN = length(y_in); y_out = zeros(size(y_in)); y_out(n_delay:NN) = y_in(1:NN-n_delay+
www.eeworm.com/read/210588/15195582

m ctfrker.m

#%CTFRKER Time frequency representation kernel % kernel = Ctfrker(N_Doppler,N_Delay,kernel_type,optional parameters) % % Computes the Cohen's group Time Frequency Representation's (TFR) % kernel, in
www.eeworm.com/read/210588/15195544

c ctfrker.c

/* interface program between MATLAB and kernel.c SEE kernel.c for comments */ #include "tftb.h" /* input parameters */ #define N_DOPPLER prhs[0] #define N_DELAY prhs[1] #define KERN