Clear Filters
Clear Filters

Can you plot X,Y points onto a "SURF" graph?

8 views (last 30 days)
I am graphing longitude (X) vs latitude (Y) vs gas concentration (Z). I used "surf(X,Y,Z)" to create a surface plot and view([0 90]) to make it flat.
Now I have the coastline points as X,Y points that I need to graph to show the coastlines. How can I plot a simple graph of X,Y points (as dots) on the surface map I've created already?
Thanks so much!
Aaron
  1 Comment
Walter Roberson
Walter Roberson on 17 Aug 2011
By the way, surf() followed by view([0 90]) is the same thing as pcolor()

Sign in to comment.

Accepted Answer

Fangjun Jiang
Fangjun Jiang on 17 Aug 2011
hold on;
plot(x,y,'.')
  2 Comments
Walter Roberson
Walter Roberson on 17 Aug 2011
Note: this might be difficult to see unless you increase the marker size.

Sign in to comment.

More Answers (0)

Categories

Find more on Geographic Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!