home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / r / rlab / !RLaB / Readme_NOW < prev    next >
Encoding:
Text File  |  1995-11-23  |  2.9 KB  |  105 lines

  1.  
  2. 4/23 beta:
  3.     I have 'compressed' the HELP dirs to 2 directories only (a-k,l-z)
  4.     + plplot help dir.
  5.     This is because with many directories the RLAB_HELP_DIR variable
  6.     is easily longer than 256 chars and this causes a few problems.
  7.     The solution: I will stick to 2 dirs until I can (they are now
  8.     75 and 76 files rspectively) or Acorn lifts THAT DAMN 77 LIMIT!
  9.     Try not to keep RLaB in a very 'deep' dir if you have
  10.      'help directory not found' problems.
  11.  
  12.     The DOC directory is (at the time of beta 4/23 release)
  13.      completely within doc_arc. This is to keep rlab_arc < 1.44Mb. 
  14.  
  15.     If you can't find a few files, they have been moved to
  16.     misc.RISCOS 
  17.     (gnuplot_ar, gnupipe, loaddir) (loaddir is still in rlib too)
  18.  
  19.  
  20.     KEEP ON READING -- IT'S IMPORTANT! 
  21.     THIS IS WHAT IAN CHANGED AND IT MIGHT AFFECT YOU!!
  22.  
  23. ***    What's New in Version v1.23 ?
  24.  
  25.     1) Some bug fixes, and additions to the misc directory. Most
  26.     notably, the addition of the OS2 port-specific files.
  27.  
  28. ***    What's New in Version v1.22 ?
  29.  
  30.     1) Re-named some (6) of the plot-related functions so that
  31.     they use the same naming convention as the
  32.     rest. ./misc/plnames.awk (see below) is an AWK script, that
  33.     will change the names for you in any rfiles you may have.
  34.  
  35.     # BEGIN plnames.awk
  36.     # A simple AWK script to change some names...
  37.     #
  38.     
  39.     { gsub("pclose", "plclose"); 
  40.       gsub("pend", "plend"); 
  41.       gsub("pstart", "plstart"); 
  42.       gsub("ptitle", "pltitle"); 
  43.       gsub("pwin", "plwin"); 
  44.       gsub("showpwin", "showplwin"); 
  45.       print; }
  46.     # END of plnames.awk
  47.  
  48.     To use plnames.awk do:
  49.  
  50.         awk -f plnames.awk < file.r > tmp.r
  51.         mv tmp.r file.r
  52.  
  53.     You can automate this in a shell script:
  54.  
  55.         #!/bin/sh
  56.         for i in `ls *.r`
  57.         do
  58.         echo $i
  59.         awk -f plnames.awk < $i > jnk
  60.         mv jnk $i
  61.         done
  62.  
  63.     BUT, be careful, if you make a mistake, you can destroy some
  64.     files. I recommend making a backup of any files _before_ using
  65.     the above.
  66.  
  67.     2) New functions: plpoint, plline to control point and line
  68.     styles. 
  69.  
  70.     3) Finally got rid of the need for a final newline character
  71.     before End-Of-File.
  72.  
  73.     4) New function surspl() (Suface Splines Interpolation).
  74.  
  75.     5) Added RLAB_HELP_PAGER to the accepted environment
  76.     variables. This allows users to specify a separate pager for
  77.     the help command. If you don't do anything, everything will
  78.     behave as before.
  79.  
  80.     6) New rfiles bodetf, lintrp.
  81.  
  82. ***    What's New in Version v1.20 ?
  83.  
  84.     1) Sorry, but I had to change the string-matrix ASCII output
  85.     format. To convert files from older versions to this version,
  86.     read in the file(s) using an older version of rlab. Then right
  87.     out the data in binary format. The binary files are readable
  88.     by this version of rlab.
  89.  
  90.     2) Internally, I have removed the scalar class. This internal
  91.     change should _not_ be visible to the end-user.
  92.  
  93.     3) OS/2 port modifications have been merged in. 
  94.     Thanks to John Perterson. 
  95.  
  96.     4) New file: INSTALL.2
  97.  
  98.     5) Fixed some bugs in strsplt...
  99.  
  100.     6) Added new syntax to make system() easier:
  101.  
  102.             \ system-command
  103.  
  104.     The `\' must be the 1st character in the command.
  105.