Re: contour plot with extra values [message #20367] |
Wed, 07 June 2000 00:00 |
Andy Loughe
Messages: 174 Registered: November 1995
|
Senior Member |
|
|
uzs63c@uni-bonn.de wrote:
>
> hello,
> I am just a beginner in working with idl. so I did some contour plots
> and with all those postings here they are looking good! Now I try to add
> extra single values in the plot, which highlight the different maxima.
> But I don�t know how to do this. Can anybody help me?
> thanks sven
;;; How about "yanking" this example into your IDL terminal?
;;; contour, data, /over is the key!
; Regular contour plot.
data = dist(40)
levels = [2,4,6,8,10,12,14,16,18]
contour, data, levels=levels, /follow, /xs, /ys
; Additional emphasis added to contour level=20.
contour, data, levels=20, /over, thick=3, /follow
|
|
|
Re: contour plot with extra values [message #20370 is a reply to message #20367] |
Wed, 07 June 2000 00:00  |
R.Bauer
Messages: 1424 Registered: November 1998
|
Senior Member |
|
|
uzs63c@uni-bonn.de wrote:
>
> hello,
> I am just a beginner in working with idl. so I did some contour plots
> and with all those postings here they are looking good! Now I try to add
> extra single values in the plot, which highlight the different maxima.
> But I don�t know how to do this. Can anybody help me?
> thanks sven
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
tray
oplot,x,y,color=10,psym=4,symsize=10
R.Bauer
|
|
|