代码搜索:Generates

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

代码结果 10,000
www.eeworm.com/read/294461/8224207

c alg27.c

#include #include #include #include #include template void print_elements( Type elem ) { cout
www.eeworm.com/read/393873/8256369

m triangular_signal.m

% TRIANG.M % % P. Flandrin, Mar. 13, 2003 % % generates a triangular waveform % % inputs : - N : # of data samples % - p : period % % output : - x : signal function x = triang(N,p); K
www.eeworm.com/read/367007/9785934

bat cp.bat

REM This Batch-File generates a Hello Program for the C51-Compiler REM C51 main.c DEBUG BL51 main.OBJ OH51 main
www.eeworm.com/read/367006/9785955

bat cp.bat

REM This Batch-File generates a Hello Program for the C51-Compiler REM C51 main.c DEBUG BL51 main.OBJ OH51 main
www.eeworm.com/read/366976/9786615

bat cp.bat

REM This Batch-File generates a Hello Program for the C51-Compiler REM C51 main.c DEBUG BL51 main.OBJ OH51 main
www.eeworm.com/read/148257/12479900

m minmat.m

function M=minmat(n); % The command M=minmat(n) generates an % nxn matrix whose (i,j) entry is the % minimum of i and j. M=ones(n,1)*[1:n]; M=min(M,M');
www.eeworm.com/read/148257/12479903

m maxmat.m

function M=maxmat(n); % The command M=maxmat(n) generates an % nxn matrix whose (i,j) entry is the % maximum of i and j. M=ones(n,1)*[1:n]; M=max(M,M');
www.eeworm.com/read/335795/12498369

c alg24.c

// heap stuff -- need to merge #include #include #include template void print_elements( Type elem ) { cout
www.eeworm.com/read/335795/12498410

c alg27.c

#include #include #include #include #include template void print_elements( Type elem ) { cout
www.eeworm.com/read/147096/12585788

m primes.m

function p = primes(n) %PRIMES Generates prime numbers. % P = PRIMES(N) produces a row vector in P, which contains the prime % numbers less than or equal to N. % % See also: ISP