home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / plot / plot.m < prev    next >
Text File  |  1996-09-28  |  2KB  |  71 lines

  1. # Copyright (C) 1993, 1994, 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function plot (...)
  16.  
  17. # usage: plot (x, y)
  18. #        plot (x1, y1, x2, y2, ...)
  19. #        plot (x, y, fmt)
  20. #
  21. # If the first argument is a vector and the second is a matrix, the
  22. # the vector is plotted versus the columns (or rows) of the matrix.
  23. # (using whichever combination matches, with columns tried first.)
  24. #
  25. # If the first argument is a matrix and the second is a vector, the
  26. # the columns (or rows) of the matrix are plotted versus the vector.
  27. # (using whichever combination matches, with columns tried first.)
  28. #
  29. # If both arguments are vectors, the elements of y are plotted versus
  30. # the elements of x.
  31. #
  32. # If both arguments are matrices, the columns of y are plotted versus
  33. # the columns of x.  In this case, both matrices must have the same
  34. # number of rows and columns and no attempt is made to transpose the
  35. # arguments to make the number of rows match.
  36. #
  37. # If both arguments are scalars, a single point is plotted.
  38. #
  39. # If only one argument is given, it is taken as the set of y
  40. # coordinates and the x coordinates are taken to be the indices of the
  41. # elements, starting with 1.
  42. #
  43. # To see possible options for FMT please see plot_opt.
  44. #
  45. # Examples:
  46. #
  47. #   plot (x, y, "@12", x, y2, x, y3, "4", x, y4, "+")
  48. #
  49. #     y will be plotted with points of type 2 ("+") and color 1 (red).
  50. #     y2 will be plotted with lines.
  51. #     y3 will be plotted with lines of color 4.
  52. #     y4 will be plotted with points which are "+"s.
  53. #
  54. #   plot (b, "*")
  55. #
  56. #     b will be plotted with points of type "*".
  57. #
  58. # See also: semilogx, semilogy, loglog, polar, mesh, contour, plot_opt
  59. #           bar, stairs, gplot, gsplot, replot, xlabel, ylabel, title 
  60.  
  61.   set nologscale;
  62.   set nopolar;
  63.  
  64.   plot_int ("plot", all_va_args);
  65.  
  66. endfunction
  67.