home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / CUJJUN93.ZIP / 1106045A < prev    next >
Text File  |  1993-04-19  |  566b  |  17 lines

  1. /* funlib.h */
  2. #ifndef FUNLIB_LOADED
  3. #define FUNLIB_LOADED
  4.  
  5. void fun_unit_step(
  6.      const long int wave_ary_len, 
  7.      double *waveform);
  8. void fun_noise(const long int wave_ary_len, 
  9.                const double noise_width,
  10.                double *waveform);
  11. void fun_step_real(const long int wave_ary_len, 
  12.                    double *waveform);
  13. void fun_gaussian_density(const long int wave_ary_len,       
  14.                           double *waveform);
  15. void fun_unit_gauss_dens(const long int wave_ary_len,                                 double *waveform);
  16. #endif
  17.