comparison scripts/plot/__plt2ss__.m @ 904:3470f1e25a79

[project @ 1994-11-09 21:22:15 by jwe]
author jwe
date Wed, 09 Nov 1994 21:22:15 +0000
parents 16a24e76d6e0
children be867ddbe4aa
comparison
equal deleted inserted replaced
903:b3692d63cca3 904:3470f1e25a79
1 # Copyright (C) 1993 John W. Eaton 1 # Copyright (C) 1993, 1994 John W. Eaton
2 # 2 #
3 # This file is part of Octave. 3 # This file is part of Octave.
4 # 4 #
5 # Octave is free software; you can redistribute it and/or modify it 5 # Octave is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by the 6 # under the terms of the GNU General Public License as published by the
17 # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 17 # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18 18
19 function plot_2_s_s (x, y) 19 function plot_2_s_s (x, y)
20 20
21 if (nargin != 2) 21 if (nargin != 2)
22 error ("usage: plot_2_s_s (x, y)"); 22 usage ("plot_2_s_s (x, y)");
23 endif 23 endif
24 24
25 [x_nr, x_nc] = size (x); 25 [x_nr, x_nc] = size (x);
26 [y_nr, y_nc] = size (y); 26 [y_nr, y_nc] = size (y);
27 27