home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / X11R6 / lib / X11 / cbb / contrib / loan.gnuplot < prev    next >
Text File  |  1998-10-07  |  693b  |  29 lines

  1. #!/usr/bin/perl
  2. #
  3. # Contributed by G. K. Fenton  1/1997
  4. #
  5. # $Id: loan.gnuplot,v 2.1 1997/01/10 19:05:09 curt Exp $
  6. # (Log is kept at end of this file)
  7.  
  8.  
  9. #set term post landscape mono "Courier" 14
  10. #
  11. # Balance and Equity Plot
  12. #set output "balance.ps"
  13. set xlabel "Term (Months)"
  14. set ylabel "(Dollars)"
  15. set key
  16. plot "data" t "balance" with linespoints, \
  17.      "data" using 3 t "equity"  with linespoints
  18. pause -1
  19. plot "data" using 4 t "interest"  with linespoints, \
  20.      "data" using 5 t "principal" with linespoints
  21. pause -1
  22.  
  23.  
  24. # ----------------------------------------------------------------------------
  25. # $Log: loan.gnuplot,v $
  26. # Revision 2.1  1997/01/10 19:05:09  curt
  27. # Initial revision.
  28. #
  29.