From: rodrikas on
hi,

I would like to plot a scatter plot superimposed to a surf plot previously created. The problem is that the surf plot does not allow to see the scatter point. Is there anyway to set the scatter point preference to the surf plot?

The steps I follow are the following:

surf(coordenadas_X,coordenadas_Y,flujo_energia_medio,'LineStyle','none')
set(gca,'da',[1 1 100])
hold on
scatter(coordenadas_X(x,y),coordenadas_Y(x,y))

thanks in advance!
From: us on
rodrikas <carballo.rodrigo(a)gmail.com> wrote in message <664611844.128522.1273743530387.JavaMail.root(a)gallium.mathforum.org>...
> hi,
>
> I would like to plot a scatter plot superimposed to a surf plot previously created. The problem is that the surf plot does not allow to see the scatter point. Is there anyway to set the scatter point preference to the surf plot?
>
> The steps I follow are the following:
>
> surf(coordenadas_X,coordenadas_Y,flujo_energia_medio,'LineStyle','none')
> set(gca,'da',[1 1 100])
> hold on
> scatter(coordenadas_X(x,y),coordenadas_Y(x,y))
>
> thanks in advance!

a hint:
- why not use SCATTER3 with z-vals such that the scatter is visible(?)...

us