代码搜索:Generates

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

代码结果 10,000
www.eeworm.com/read/346716/11728544

m batch.m

% generates the data needed for the plots in the book % make_rp; rp.type='A'; rp.T = 2.9; rp.name = 'run1'; run_dctlmseq(rp); rp.T = 3.1; rp.name = 'run2'; run_dctlmseq(rp); rp.T = 3.3; rp.n
www.eeworm.com/read/153218/12051683

m batch.m

% generates the data needed for the plots in the book % make_rp; rp.type='A'; rp.T = 2.9; rp.name = 'run1'; run_dctlmseq(rp); rp.T = 3.1; rp.name = 'run2'; run_dctlmseq(rp); rp.T = 3.3; rp.n
www.eeworm.com/read/251644/12328256

cpp genera1.cpp

/* The following code example is taken from the book * "The C++ Standard Library - A Tutorial and Reference" * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josuttis 19
www.eeworm.com/read/131904/14120334

m batch.m

% generates the data needed for the plots in the book % make_rp; rp.type='A'; rp.T = 2.9; rp.name = 'run1'; run_dctlmseq(rp); rp.T = 3.1; rp.name = 'run2'; run_dctlmseq(rp); rp.T = 3.3; rp.n
www.eeworm.com/read/130592/14182183

m batch.m

% generates the data needed for the plots in the book % make_rp; rp.type='A'; rp.T = 2.9; rp.name = 'run1'; run_dctlmseq(rp); rp.T = 3.1; rp.name = 'run2'; run_dctlmseq(rp); rp.T = 3.3; rp.n
www.eeworm.com/read/129735/14230451

c sinegen.c

/*SINEGEN.C-GENERATES SINE VALUES FOR REAL FFT*/ #include #include #define N 512 #define pi 3.141592654 main() { FILE *stream; int n; float result; stream = fope
www.eeworm.com/read/226661/14455935

m batch.m

% generates the data needed for the plots in the book % make_rp; rp.type='A'; rp.T = 2.9; rp.name = 'run1'; run_dctlmseq(rp); rp.T = 3.1; rp.name = 'run2'; run_dctlmseq(rp); rp.T = 3.3; rp.n
www.eeworm.com/read/168459/5446815

bat genrtx.bat

REM This file generates the RTX51 TINY LIBRARY a51 right.a51 a51 vers.a51 a51 rtx51tny.a51 debug a51 conf_tny.a51 del rtx51tny.lib lib51 create rtx51tny.lib lib51 add right.obj,vers.obj,rtx51tn
www.eeworm.com/read/295657/8147776

m trngl_fn.m

% This function generates a triangle centered at zero % and extending from -1 to 1 % function tri = trngl_fn(t) tri = rmp_fn(t+1)-2*rmp_fn(t)+rmp_fn(t-1);
www.eeworm.com/read/295657/8147999

m pls_fn.m

% pls_fn(t): This function generates a rectangle centered at zero % and extending from -0.5 to 0.5 % function y=pls_fn(t) y=stp_fn(t+0.5)-stp_fn(t-0.5-eps);