home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / tserlib / tser_set_len.c < prev   
Encoding:
C/C++ Source or Header  |  1989-12-06  |  272 b   |  16 lines

  1. /*
  2. ### set the length of time series ###
  3. */
  4.  
  5. tser_set_len()
  6. {
  7.     extern n_stored_data1,tser_len,tser_data_option;
  8.  
  9.     if(tser_data_option==0){
  10.         tser_len = n_stored_data1;
  11.     }
  12.     else if(tser_data_option==1){
  13.         system_mess_proc(1,"Cannot copy orbit data for this option!");
  14.     }
  15. }
  16.