File: title.m

package info (click to toggle)
octave2.0 2.0.16.92-7
  • links: PTS
  • area: main
  • in suites: woody
  • size: 27,912 kB
  • ctags: 16,610
  • sloc: cpp: 67,632; fortran: 41,514; ansic: 26,682; sh: 6,366; makefile: 4,141; lex: 2,012; yacc: 1,849; lisp: 1,702; perl: 1,676; exp: 123
file content (43 lines) | stat: -rw-r--r-- 1,315 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## 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, 59 Temple Place - Suite 330, Boston, MA
## 02111-1307, USA.

## usage: title (text)
##
## Defines a title for a plot.  The title will appear the next time a
## plot is displayed.
##
## See also: plot, semilogx, semilogy, loglog, polar, mesh, contour,
##           bar, stairs, gplot, gsplot, replot, xlabel, ylabel

## Author: jwe

function title (text)

  if (nargin != 1)
    usage ("title (text)");
  endif

  if (isstr (text))
    eval (sprintf ("gset title \"%s\"",
		   undo_string_escapes (undo_string_escapes (text))));
  else
    error ("title: text must be a string");
  endif

endfunction