plotting scatter points over countour

Hi,

I have a countourf() plot, overlayed by
countour().

Now I want to plot additional points (here:
errors in data) like scatter over the existing figure.

How to do? Any ideas?

Dirk Junghanns

Dirk Junghanns wrote:

Hi,

I have a countourf() plot, overlayed by countour().
Now I want to plot additional points (here: errors in data) like scatter over the existing figure.

Maybe I don't understand the question, but I just ran the contourf_demo example, then did

hold(True)
plot([2.0],[1.0],'+')

and saw the plotted point.