代码搜索:Generates
找到约 10,000 项符合「Generates」的源代码
代码结果 10,000
www.eeworm.com/read/204559/15336955
c alg27.c
#include
#include
#include
#include
#include
template
void print_elements( Type elem ) { cout
www.eeworm.com/read/202680/15375916
m fibnum.m
function f = fibnum(n)
%FIBNUM Fibonacci number.
% FIBNUM(n) generates the n-th Fibonacci number.
if n
www.eeworm.com/read/202129/15390365
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/108859/15573932
m urect.m
function y=urect(t,a)
% URECT Unit Rectangle Function.
%
% Y=URECT(t) generates a rectangle of height=1, width=1,centered at t=0.
% The end-values of urect(t) at t=0.5 and t=0.5 equal 1.
www.eeworm.com/read/104078/15710467
c noise2.c
/**************************************************************************
*
* ROUTINE
* noise2
*
* FUNCTION
*
* generates gaussian noise using the polar method
*
* SYNOPS
www.eeworm.com/read/101557/15827210
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
www.eeworm.com/read/192089/8407581
c alg7.c
#include
#include
#include
class equal_and_odd{
public:
bool
operator()( int val1, int val2 )
{
return ( val1 == val2 &&
( val1 == 0
www.eeworm.com/read/391151/8418908
c sinegende.c
//SinegenDE.c Generates a sinewave using a difference equation
short y[3] = {0,16384,0}; //y(1) = sinwT
const short A = 0; //A = 2*coswT * 2^14
int n = 2;
www.eeworm.com/read/189239/8483004
m dist.m
% Program 7-7
%
% dist.m
%
% This function generates attenuation due to distance
%
% Programmed by F. Kojima
% Checked by H.Harada
%
function [x] = dist(a,b,alpha)
% a,b: position of
www.eeworm.com/read/290192/8498310
c mt19937ar.c
/*
A C-program for MT19937, with initialization improved 2002/1/26.
Coded by Takuji Nishimura and Makoto Matsumoto.
Before using, initialize the state by using init_genrand(seed)
or in