代码搜索:Generates

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

代码结果 10,000
www.eeworm.com/read/489524/6472669

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/489084/6482592

m cm_f34.m

% script that generates the figure 3.4 of Carrier modulation chapter snrindB=0:0.25:18; for i=1:length(snrindB), snr=10^(0.1*snrindB(i)); P2(i)=Qfunct(sqrt(2*snr)); P4(i)=2*Qfunct(sqrt(4*sn
www.eeworm.com/read/480713/6660112

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/479088/6699306

m timegen.m

function t = timegen(prf,m,n,mul) % % Generates the time coordinates for the given radar parameters. % t is a m by n matrix. % prf: Radar PRF. % m: Number of bursts. %
www.eeworm.com/read/477099/6745358

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/476907/6754129

m randint2.m

function out = randint2(varargin); %RANDINT Generate matrix of uniformly distributed random integers. % OUT = RANDINT generates a "0" or "1" with equal probability. % % OUT = RANDINT(M) genera
www.eeworm.com/read/476907/6754291

m cm_f34.m

% script that generates the figure 3.4 of Carrier modulation chapter snrindB=0:0.25:18; for i=1:length(snrindB), snr=10^(0.1*snrindB(i)); P2(i)=Qfunct(sqrt(2*snr)); P4(i)=2*Qfunct(sqrt(4*sn
www.eeworm.com/read/408966/11363569

m rayleigh.m

function [r]=rayleigh(sigma,NSamples) % generates a Rayliegh time series of lenght NSamples and modal value sigma ii=randn(NSamples,1).*sigma; qq=randn(NSamples,1).*sigma; r=ii+j*qq;
www.eeworm.com/read/408966/11363597

m rice.m

function [r]=rice(a,sigma,NSamples); % Generates a Ricean time series of length NSamples % paramters a and sigma ii=randn(NSamples,1)*sigma+a; qq=randn(NSamples,1)*sigma; r=ii+j*qq;
www.eeworm.com/read/405217/11468621

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