Re: Weighting Function [message #31779] |
Tue, 20 August 2002 11:29 |
Paul Van Delst[1]
Messages: 1157 Registered: April 2002
|
Senior Member |
|
|
Don J Lindler wrote:
>
>> I have written some code to compute and plot weighting function.
>> Currently the plot has a log P scale, but goes from 0 to 1000mb, I'd
>> like it to go from 1000mb at the bottom to 0mb at the top. Any clues
>> who to flip axes/data? Any help would be great!
>>
>
> plot, x, y, yrange=[1000,0]
or
plot, x, y, yrange = [1000,0.01], /ylog
where you can substitute a suitable top-of-atmosphere pressure (instead of 0.01hPa).
paulv
--
Paul van Delst
CIMSS @ NOAA/NCEP/EMC Beer is good.
Ph: (301)763-8000 x7274 My wife.
Fax:(301)763-8545
|
|
|
Re: Weighting Function [message #31781 is a reply to message #31779] |
Tue, 20 August 2002 10:07  |
Don J Lindler
Messages: 19 Registered: April 2001
|
Junior Member |
|
|
> I have written some code to compute and plot weighting function.
> Currently the plot has a log P scale, but goes from 0 to 1000mb, I'd
> like it to go from 1000mb at the bottom to 0mb at the top. Any clues
> who to flip axes/data? Any help would be great!
>
plot, x, y, yrange=[1000,0]
Don
|
|
|