Re: Add a Vertical Line to a Plot [message #71767] |
Thu, 22 July 2010 06:11  |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
Solargus writes:
> How can I add a vertical line to a certain time index value within a
> plot? Say, at time.hour=6?
PlotS, [time.hour, time.hour], !Y.CRange
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Sepore ma de ni thui. ("Perhaps thou speakest truth.")
|
|
|
Re: Add a Vertical Line to a Plot [message #71847 is a reply to message #71767] |
Fri, 23 July 2010 05:01  |
Solargus
Messages: 5 Registered: May 2010
|
Junior Member |
|
|
On Jul 22, 9:11 am, David Fanning <n...@dfanning.com> wrote:
> Solargus writes:
>> How can I add a vertical line to a certain time index value within a
>> plot? Say, at time.hour=6?
>
> PlotS, [time.hour, time.hour], !Y.CRange
>
> Cheers,
>
> David
>
> --
> David Fanning, Ph.D.
> Fanning Software Consulting, Inc.
> Coyote's Guide to IDL Programming:http://www.dfanning.com/
> Sepore ma de ni thui. ("Perhaps thou speakest truth.")
I've tried
PlotS, [time.hour eq 6, time.hour eq 6], !Y.CRange
PlotS, [6, 6], !Y.CRange
but this is not working. Could you be more explicit?
Thanks
|
|
|