代码搜索:Generates

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

代码结果 10,000
www.eeworm.com/read/464335/7165240

m fibnum.m

function f = fibnum(n) %FIBNUM Fibonacci number. % FIBNUM(n) generates the n-th Fibonacci number. if n
www.eeworm.com/read/463000/7190795

m shadow.m

% Program 7-6 % % shadow.m % % This function generates attenuation of shadowing % % Programmed by F. Kojima % Checked by H.Harada % function [x] = shadow(sigma) anoz = randn; db = sig
www.eeworm.com/read/463000/7190797

m holdtime.m

% Program 7-5 % % holdtime.m % % This function generates holding time % % Programmed by F. Kojima % Checked by H.Harada % function [x] = holdtime(ht) para = rand; while para >= 1
www.eeworm.com/read/460435/7251113

m isclassifier.m

%ISCLASSIFIER Test on normed classifier % % I = ISCLASSIFIER(W) % ISCLASSIFIER(W) % % A mapping W is a classifier if its OUT_CONV field is larger % than zero. In that case confidences will be r
www.eeworm.com/read/460053/7258480

m genrs.m

function [R,S]=genRS(N,r) %generates matrices R and S for the calculation of image %moments based on Fluss and Tuk's method described in %"On the Calculation of Moments" %N-expected image size
www.eeworm.com/read/457711/7319023

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/457711/7319024

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/454938/7381246

c alg24.c

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

c alg27.c

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

h cgen.h

#ifndef _CGEN_H_ #define _CGEN_H_ /* Procedure codeGen generates code to a code * file by traversal of the syntax tree. The * second parameter (codefile) is the file name * of the code fil