annotate scripts/plot/__default_plot_options__.m @ 11885:3342d1a7c4c9 release-3-0-x

spelling corrections Here is a patch with some spelling corrections to the manual. changeset: 8308:aeaf884ea9af user: Brian Gough <bjg@gnu.org> date: Fri Nov 07 09:26:17 2008 -0500 summary: [docs] assoicated => associated
author Brian Gough<bjg@network-theory.co.uk>
date Thu, 20 Nov 2008 08:39:44 +0100
parents 93c65f2a5668
children 7d48766c21a5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6264
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
1 ## Copyright (C) 2007 John W. Eaton
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
2 ##
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
3 ## This file is part of Octave.
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
4 ##
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
6 ## under the terms of the GNU General Public License as published by
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6895
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6895
diff changeset
8 ## your option) any later version.
6264
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
9 ##
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
13 ## General Public License for more details.
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
14 ##
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
15 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6895
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6895
diff changeset
17 ## <http://www.gnu.org/licenses/>.
6264
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
18
6895
76e3d985ae56 [project @ 2007-09-13 18:22:38 by jwe]
jwe
parents: 6264
diff changeset
19 ## Undocumented internal function.
6264
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
20
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
21 ## Author: jwe
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
22
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
23 function options = __default_plot_options__ ()
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
24
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
25 options.key = "";
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
26 options.color = [];
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
27 options.linestyle = "-";
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
28 options.marker = "none";
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
29
cc2bee854d23 [project @ 2007-02-01 10:00:05 by jwe]
jwe
parents:
diff changeset
30 endfunction