Mercurial > hg > octave-lyh
view scripts/plot/__plt3__.m @ 6156:a46f14cdbecd
[project @ 2006-11-13 19:20:23 by jwe]
author | jwe |
---|---|
date | Mon, 13 Nov 2006 19:20:23 +0000 |
parents | 1a6d826e92b5 |
children | 8614649c454c |
line wrap: on
line source
## Copyright (C) 1996 John W. Eaton ## ## This file is part of Octave. ## ## Octave is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2, or (at your option) ## any later version. ## ## Octave is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, write to the Free ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA ## 02110-1301, USA. ## -*- texinfo -*- ## @deftypefn {Function File} {} __plt3__ (@var{x}, @var{y}, @var{z}, @var{fmt}) ## @end deftypefn ## Author: Paul Kienzle <kienzle.powernet.co.uk> ## 2001-04-06 Paul Kienzle <kienzle.powernet.co.uk> ## * __gnuplot_set__ nohidden3d; vector X,Y, matrix Z => meshgrid(X,Y) ## Modified to use new gnuplot interface in octave > 2.9.0 ## Dmitri A. Sergatskov <dasergatskov@gmail.com> ## April 18, 2005 ## Modified to use NaN as seperator for gnuplot, so multiple calls ## aren't needed. ## David Bateman <dbateman@free.fr> ## May 25, 2006 function __plt3__ (x, usingstr, fmtstr, keystr, withstr) if (nargin < 2) have_usingstr = false; usingstr = ""; else have_usingstr = true; endif if (nargin < 3) fmtstr = ""; endif if (nargin < 4) keystr = ""; endif if (nargin < 5) withstr = ""; endif __plot_globals__; cf = __current_figure__; mxi = __multiplot_xi__; myi = __multiplot_yi__; __setup_plot__ ("__gnuplot_splot__"); j = __plot_data_offset__{cf}(mxi,myi); loff = __plot_line_offset__{cf}(mxi,myi); loff1 = loff; __plot_data__{cf}{mxi,myi}{j} = x; __plot_key_labels__{cf}{mxi,myi}{loff1++} = keystr; if (! have_usingstr) usingstr = __make_using_clause__ (__plot_data__{cf}{mxi,myi}{j}); endif __plot_command__{cf}{mxi,myi} ... = sprintf ("%s%s __plot_data__{__current_figure__}{__multiplot_xi__,__multiplot_yi__}{%d} %s %s %s __plot_key_labels__{__current_figure__}{__multiplot_xi__,__multiplot_yi__}{%d} %s", __plot_command__{cf}{mxi,myi}, __plot_command_sep__, j++, usingstr, fmtstr, gnuplot_command_title, loff++, withstr); __plot_command_sep__ = ",\\\n"; __plot_data_offset__{cf}(mxi,myi) = j; __plot_line_offset__{cf}(mxi,myi) = loff; if (__multiplot_mode__) __gnuplot_raw__ ("clear\n"); endif if (! strcmp (__plot_command__{cf}{mxi,myi}, "__gnuplot_splot__")) eval (__plot_command__{cf}{mxi,myi}); endif endfunction