comparison scripts/plot/bottom_title.m @ 2325:b5568c31ee2c

[project @ 1996-07-15 22:20:21 by jwe]
author jwe
date Mon, 15 Jul 1996 22:20:21 +0000
parents 5ca126254d15
children a034dcdbc282
comparison
equal deleted inserted replaced
2324:fdc6e2f81333 2325:b5568c31ee2c
20 ## usage: bottom_title (text) 20 ## usage: bottom_title (text)
21 ## 21 ##
22 ## NOTE: this will work only with gnuplot installed with 22 ## NOTE: this will work only with gnuplot installed with
23 ## multiplot patch 23 ## multiplot patch
24 ## 24 ##
25 ## makes a title with the given text at the bottom of the plot 25 ## makes a title with the given text at the bottom of the plot
26 ## rather than the top. 26 ## rather than the top.
27 ## 27 ##
28 28
29 ## Author: Vinayak Dutt <Dutt.Vinayak@mayo.EDU> 29 ## Author: Vinayak Dutt <Dutt.Vinayak@mayo.EDU>
30 ## Adapted-By: jwe 30 ## Adapted-By: jwe
32 function bottom_title (text) 32 function bottom_title (text)
33 33
34 if (! gnuplot_has_multiplot) 34 if (! gnuplot_has_multiplot)
35 error ("bottom_title: gnuplot does not appear to support this feature"); 35 error ("bottom_title: gnuplot does not appear to support this feature");
36 endif 36 endif
37 37
38 if (nargin != 1) 38 if (nargin != 1)
39 usage ("bottom_title (text)"); 39 usage ("bottom_title (text)");
40 endif 40 endif
41 41
42 if (isstr (text)) 42 if (isstr (text))