代码搜索:Generates

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

代码结果 10,000
www.eeworm.com/read/154209/11983162

m rectpuls.m

function y = rectpuls(t,Tw) %RECTPULS Sampled aperiodic rectangle generator. % RECTPULS(T) generates samples of a continuous, aperiodic, % unity-height rectangle at the points specified in arra
www.eeworm.com/read/255755/12058079

m isaffine.m

%ISAFFINE Test affine mapping % % I = ISAFFINE(W) % ISAFFINE(W) % % I is true if W is an affine mapping. % If called without an output argument ISAFFINE generates an error % if W is not an affin
www.eeworm.com/read/152112/12139076

m fib.m

function y=fib(n) %Generates fibonacci numbers for the program fibonacci fz(1)=1;fz(2)=1; for k=3:n fz(k)=fz(k-1)+fz(k-2); end y=fz(n);
www.eeworm.com/read/151555/12201555

m randssp.m

function r = randssp(p,q) %RANDSSP Multiplicative congruential uniform random number generator. % Based on the parameters used by IBM's Scientific Subroutine Package. % The statement % r =
www.eeworm.com/read/150905/12249377

m isaffine.m

%ISAFFINE Test affine mapping % % I = ISAFFINE(W) % ISAFFINE(W) % % I is true if W is an affine mapping. % If called without an output argument ISAFFINE generates an error % if W is not an affin
www.eeworm.com/read/251837/12316853

m diag.m

function r = diag(a,k) %DIAG (interval) implements diag for interval vectors/matrices. % %b4m - datatype interval Version 1.02 (c) 26.2.1998 Jens Zemke % % DESCRIPTION: % 'diag' is
www.eeworm.com/read/149739/12353667

m isaffine.m

%ISAFFINE Test affine mapping % % I = ISAFFINE(W) % ISAFFINE(W) % % I is true if W is an affine mapping. % If called without an output argument ISAFFINE generates an error % if W is not an affin
www.eeworm.com/read/234324/14115882

m contents.m

% Higher-Order Spectral Analysis Toolbox. % Version 2.0.3 (R12 compliant) 27 Dec 2000 % % New Features. % Readme - Important release information about the HOSA Toolbox %
www.eeworm.com/read/223325/14645515

c randompackage.c

/* Random Number Generator for non-uniform distributions */ /* Authors : Weili Chen, Zixuan Ma */ /* Anyone can use it for any purposes */ #include
www.eeworm.com/read/222288/14697982

m fib.m

function y=fib(n) %Generates fibonacci numbers for the program fibonacci fz(1)=1;fz(2)=1; for k=3:n fz(k)=fz(k-1)+fz(k-2); end y=fz(n);