代码搜索:Generates
找到约 10,000 项符合「Generates」的源代码
代码结果 10,000
www.eeworm.com/read/299459/7850889
m contents.m
% Probability distribution functions.
%
% estimation - (dir) Probability distribution estimation.
%
% erfc2 - Normal cumulative distribution function.
% gmmsamp - Generates sample from Gau
www.eeworm.com/read/199230/7876649
m genrand.m
function Datatx = genrand(NumSymb,wordsize,NumCarr)
%GENRAND Generates random data to transmit
% Datatx = genrand(NumSymb,wordsize,NumCarr)
Datatx = floor(rand(NumSymb,NumCarr)*(2^wordsize));
www.eeworm.com/read/199228/7876743
m genrand.m
function Datatx = genrand(NumSymb,wordsize,NumCarr)
%GENRAND Generates random data to transmit
% Datatx = genrand(NumSymb,wordsize,NumCarr)
Datatx = floor(rand(NumSymb,NumCarr)*(2^wordsize));
www.eeworm.com/read/199227/7876784
m genrand.m
function Datatx = genrand(NumSymb,wordsize,NumCarr)
%GENRAND Generates random data to transmit
% Datatx = genrand(NumSymb,wordsize,NumCarr)
Datatx = floor(rand(NumSymb,NumCarr)*(2^wordsize));
www.eeworm.com/read/198545/7929148
m poisr.m
function y = poisr(lambda,n)
%POISR Poisson random number generator.
% POISR(LAMBDA,N) generates N random deviates from the
% Poisson distribution with mean LAMBDA.
%
% POISR(LAMBDA) generates a
www.eeworm.com/read/198545/7929266
m normr.m
function r=normr(m,n);
%NORMR NORMR(M,N) generates an M by N matrix of random deviates
% from the standard normal distribution.
% GKS 28 Jul 1999
r = randn(m,n);
www.eeworm.com/read/197649/7982983
m saw.m
function z=saw(t)
% The function SAW generates a saw tooth function.
%
% Calling sequence-
% z=saw(t)
%
% Input-
% t - column vector data t(n)
% Output-
% z - column vector data z(n) that
www.eeworm.com/read/197565/7985885
m cp0202_ds.m
%
% FUNCTION 2.7 : "cp0202_DS"
%
% Generates a random DS code
% with periodicity 'Np'
%
% Programmed by Guerino Giancola
%
function [DScode]=cp0202_DS(Np);
% -----------------------------
www.eeworm.com/read/197565/7986042
m cp0201_th.m
%
% FUNCTION 2.3 : "cp0201_TH"
%
% Generates a pseudorandom TH code
% with periodicity 'Np' and cardinality 'Nh'
%
% Programmed by Guerino Giancola
%
function [THcode]=cp0201_TH(Nh,Np);
%
www.eeworm.com/read/197565/7986046
m cp0201_bits.m
%
% FUNCTION 2.1 : "cp0201_bits"
%
% Generates a stream of equiprobable binary values ('bits')
% The number of bits ('numbits') is an input parameter
%
% Programmed by Guerino Giancola
%
fun