Mercurial > hg > octave-nkf
comparison scripts/plot/bottom_title.m @ 1557:c694fe5956e3
[project @ 1995-10-12 00:32:20 by jwe]
author | jwe |
---|---|
date | Thu, 12 Oct 1995 00:34:40 +0000 |
parents | 749b8b19733f |
children | 5d29638dd524 |
comparison
equal
deleted
inserted
replaced
1556:d508e2cab748 | 1557:c694fe5956e3 |
---|---|
33 if (nargin != 1) | 33 if (nargin != 1) |
34 usage ("bottom_title (text)"); | 34 usage ("bottom_title (text)"); |
35 endif | 35 endif |
36 | 36 |
37 if (isstr (text)) | 37 if (isstr (text)) |
38 set top_title | 38 set top_title; |
39 set title | 39 set title; |
40 eval (sprintf ("set bottom_title \"%s\"", text)); | 40 eval (sprintf ("set bottom_title \"%s\"", text)); |
41 else | 41 else |
42 error ("bottom_title: text must be a string"); | 42 error ("bottom_title: text must be a string"); |
43 endif | 43 endif |
44 | 44 |