home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_11_06
/
1106045a
< prev
next >
Wrap
Text File
|
1993-04-19
|
566b
|
17 lines
/* funlib.h */
#ifndef FUNLIB_LOADED
#define FUNLIB_LOADED
void fun_unit_step(
const long int wave_ary_len,
double *waveform);
void fun_noise(const long int wave_ary_len,
const double noise_width,
double *waveform);
void fun_step_real(const long int wave_ary_len,
double *waveform);
void fun_gaussian_density(const long int wave_ary_len,
double *waveform);
void fun_unit_gauss_dens(const long int wave_ary_len, double *waveform);
#endif