simple questions: position and strings [message #809] |
Sat, 15 May 1993 15:33  |
flatau
Messages: 3 Registered: May 1993
|
Junior Member |
|
|
1. In the following code what is the role of "position" keyword
in axis command ? None ?
Why is 5 ignored in the "axis" command. I.e axis doesn't start
at x=5 ?
set_plot,'tek'
erase
a=findgen(10)
plot,a,position=[0.2,0.2,0.7,0.7]
axis,5,0,position=[0.3,0.4,0.9,0.8]
2. I wonder if somebody has routine which would allow TeX strings
in IDL. I.e. I would like to write something like
xyouts \theta_i^j
This is available in one of the graphics package (SM) and I would like
to be able to do the same in IDL
3. How do I get 3 plots on one page but such that the are together
(common x-axis at the top of the first, and bottom of the next plot).
I don't think it can be done with !p.multi and margin because of
overlapping labels.
Peter
|
|
|
|
|
|
|
Re: Simple questions [message #2947 is a reply to message #2841] |
Thu, 06 October 1994 08:37  |
rmm
Messages: 4 Registered: June 1994
|
Junior Member |
|
|
One slight correction to the previous post:
When you free memory by setting an array to a scalar, e.g.
huge=fltarr(1000,1000)
.
.
.
huge=0
It does not free the memory back to the OS (operating system). It does
however free the memory for IDL to reuse internally.
Robert M. Moss
Texaco Inc.
rmmoss@Texaco.COM
**********************************************
* I said it, not Texaco, so don't blame them *
**********************************************
|
|
|