home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / apps / math / euler / source / funcs.h < prev    next >
Text File  |  1991-02-18  |  1KB  |  43 lines

  1. void spread1 (double f (double), 
  2.     void fc (double *, double *, double *, double *),
  3.     header *hd);
  4. void make_complex (header *hd);
  5.  
  6. void minmax (double *x, LONG n, double *min, double *max, 
  7.     int *imin, int *imax);
  8.  
  9. void transpose (header *hd);
  10. void vectorize (header *init, header *step, header *end);
  11. void msin (header *hd); 
  12. void mcos (header *hd);
  13. void mtan (header *hd);
  14. void matan (header *hd);
  15. void mexp (header *hd);
  16. void mlog (header *hd);
  17. void msqrt (header *hd);
  18. void mre (header *hd);
  19. void mim (header *hd);
  20. void mpi (header *hd);
  21.  
  22. void mdup (header *hd);
  23. void msum (header *hd);
  24. void mprod (header *hd);
  25. void mcomplex (header *hd);
  26.  
  27. void mpower (header *hd);
  28.  
  29. int exec_builtin (char *name, int nargs, header *hd);
  30. void print_builtin (void);
  31.  
  32. void mgreater (header *hd);
  33. void mless (header *hd);
  34. void mgreatereq (header *hd);
  35. void mlesseq (header *hd);
  36. void mequal (header *hd);
  37. void munequal (header *hd);
  38. void maboutequal (header *hd);
  39.  
  40. void msolve (header *hd);
  41.  
  42. void mindex (header *hd);
  43.