Your question was:
I've got a time-sequence of frames, and I'd like to place the time of each
frame (in exponential form) somewhere in the frame plot. "Time: 3.4e11 sec"
In my code 3.4e11 is a real, but all the NCARG text utilities want character
strings.
Simply: How does one place a non-predefined number on a plot?
I suggest the encode statement. Such as:
character*20 ttitle
encode (20,10,ttitle) time1
10 format ('Time: ',1pe9.2,' sec')
Now your character variable ttitle is ready for the NCARG utility. If that is
too old-fashioned a style to suit you, then I suggest an internal write
statement:
write (ttitle,10) time1
with the same format statement above.
Lucy Carruthers CCIT University of Arizona
This archive was generated by hypermail 2b29 : Wed Jun 28 2000 - 09:45:36 MDT