comparison scripts/plot/bottom_title.m @ 5214:eecc24b92d97

[project @ 2005-03-16 17:14:12 by jwe]
author jwe
date Wed, 16 Mar 2005 17:14:12 +0000
parents 92be67bc9301
children 32c569794216
comparison
equal deleted inserted replaced
5213:390f13fc0f4a 5214:eecc24b92d97
30 if (nargin != 1) 30 if (nargin != 1)
31 usage ("bottom_title (text)"); 31 usage ("bottom_title (text)");
32 endif 32 endif
33 33
34 if (isstr (text)) 34 if (isstr (text))
35 gset top_title; 35 __gset__ top_title;
36 gset title; 36 __gset__ title;
37 eval (sprintf ("gset bottom_title \"%s\"", 37 eval (sprintf ("__gset__ bottom_title \"%s\"",
38 undo_string_escapes (undo_string_escapes (text)))); 38 undo_string_escapes (undo_string_escapes (text))));
39 else 39 else
40 error ("bottom_title: text must be a string"); 40 error ("bottom_title: text must be a string");
41 endif 41 endif
42 42