代码搜索:Generates

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

代码结果 10,000
www.eeworm.com/read/359810/10123979

m res_bs_powerad.m

% the power utilization figure % generates two figures % figure 1: distance vs. utilized power (per block) % figure 2: CDF of utilized power (for each OFDM frame) function [result,fileidx] = res_bs_p
www.eeworm.com/read/163246/10168793

m altes.m

function x=altes(N,fmin,fmax,alpha) ; %ALTES Altes signal in time domain. % X=ALTES(N,FMIN,FMAX,ALPHA) generates the Altes signal in % the time domain. % % N : number of points in time % FMIN
www.eeworm.com/read/163246/10168839

m fmconst.m

function [y,iflaw] = fmconst(N,fnorm,t0); %FMCONST Signal with constant frequency modulation. % [Y,IFLAW] = FMCONST(N,FNORM,T0) generates a frequency modulation % with a constant frequency fnorm. %
www.eeworm.com/read/163246/10168842

m anastep.m

function y=anastep(N,ti); %ANASTEP Analytic projection of unit step signal. % Y=ANASTEP(N,TI) generates the analytic projection of a % unit step signal. % % N : number of points. % TI : starting pos
www.eeworm.com/read/357459/10208983

m cmodel.m

function ic=cmodel(sys,Bs,pos,par) %CMODEL Camera model that generates synthetic image coordinates from %3-D coordinates and camera parameters. % %Usage: % ic = cmodel(sys,Bs,pos,par) % %where
www.eeworm.com/read/162867/10262455

m dftmatrix.m

%DFTMATRIX generates N X N DFT Transformation Matrix. % T=dftmatrix(N) returns the DFT coefficients for a N point DFT. % Copyright (c) 1999-2002 The University of Texas % All Rights Reserved. %
www.eeworm.com/read/280595/10312398

m gsamp.m

function X=gsamp(varargin) % GSAMP Generates sample from Gaussian distribution. % % Synopsis: % X = gsamp( Mean, Cov, num_data ) % X = gsamp( model, num_data ) % % Description: % X = gsamp(Mean,Co
www.eeworm.com/read/354492/10349625

c alg31.c

#include #include #include /* * generates: original order of the vector: 69 23 80 42 17 15 26 51 19 12 35 8 partial sort of vector: seven elements 8
www.eeworm.com/read/354492/10349635

c alg35.c

#include #include #include // generates: n d a n a d d n a d a n a n d a d n int main() { vector< char, allocator > vec( 3 ); ostream_it
www.eeworm.com/read/354492/10349663

c alg39.c

#include #include #include /* generates: original element sequence: 3 4 5 0 1 2 sequence applying swap() to support bubble sort: 0 1 2 3 4 5 *