help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Put Test In Plot


From: Bob Odom
Subject: Re: Put Test In Plot
Date: Thu, 24 Feb 2011 20:27:23 -0800 (PST)
User-agent: Alpine 2.00 (DEB 1167 2008-08-23)


On Thu, 24 Feb 2011, Thomas D. Dean wrote:

In a page of 6 plots, I want subplot(3,2,1) to contain several lines of
test, like

exp_txt=["This is line one";
"and, line two";
and etc."];

How do I do this?

In scilab, I use

subplot(3,2,1);
titlepage([tt1;
         'Bomar Crystals';
          'Sep 11 10:17 ';
          tt2;
          'Set Point 320';
          'At 5800, impulsed system by touching VcTcXo';
          'thereby changing system temperature';
          'Filter Time Constant 30 seconds';
          'fo  = (fi>>10) + (fil>>10)']);


tomdean

_______________________________________________
Help-octave mailing list
address@hidden
https://mailman.cae.wisc.edu/listinfo/help-octave

Thomas,

In octave use 'text'. You can do a 'help text' in octave.

I have a line is some of my code like:

text(x,y,"Your text",'color','b');

(x,y) are the local coordinates in your subplot. "Your text" will begin at
(x,y).

Bob


reply via email to

[Prev in Thread] Current Thread [Next in Thread]