代码搜索:Generates

找到约 10,000 项符合「Generates」的源代码

代码结果 10,000
www.eeworm.com/read/156101/11828037

m cp0201_th.m

% % FUNCTION 2.3 : "cp0201_TH" % % Generates a pseudorandom Time Hopping code % with periodicity 'Np' and cardinality 'Nh' % % Programmed by Guerino Giancola % function [THcode]=cp0201_TH(Nh
www.eeworm.com/read/156101/11828043

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
www.eeworm.com/read/155919/11838344

m cp0202_ds.m

% % FUNCTION 2.7 : "cp0202_DS" % % Generates a random Direct Sequence code % with periodicity 'Np' % % Programmed by Guerino Giancola % function [DScode]=cp0202_DS(Np); % ----------------
www.eeworm.com/read/155919/11838464

m cp0201_th.m

% % FUNCTION 2.3 : "cp0201_TH" % % Generates a pseudorandom Time Hopping code % with periodicity 'Np' and cardinality 'Nh' % % Programmed by Guerino Giancola % function [THcode]=cp0201_TH(Nh
www.eeworm.com/read/155919/11838467

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
www.eeworm.com/read/155568/11863079

m fibonacci.m

function f = fibonacci(n) %FIBONACCI Fibonacci sequence % f = FIBONACCI(n) generates the first n Fibonacci numbers. f = zeros(n,1); f(1) = 1; f(2) = 2; for k = 3:n f(k) = f(k-1) + f(k-2);
www.eeworm.com/read/343227/11962853

m randindx.m

function I = randindx(p, T, NO_CHK) %randindx Generates random indexes with a specified probability distribution. % I=randindx(p,T) returns and array of T indexes distributed as specified % by p (wh
www.eeworm.com/read/255284/12090561

m fig2_3.m

%This program generates Figure 2.3. close all clear all logpfa = linspace(.01,250,1000); var = 10.^(logpfa ./ 10.0); vtnorm = sqrt( log (var)); semilogx(logpfa, vtnorm,'k') grid
www.eeworm.com/read/152557/12105338

html i386-16bit.html

Using as
www.eeworm.com/read/152406/12116701

m pulsesource.m

% PULSESOURCE Generates output of pulsed source % % [Y] = PULSESOURCE (Time, RiseTime, FallTime, Width, % Period, Delay, High, Low) % Generates the output of the corre