フィルターのクリア

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

8 ビュー (過去 30 日間)
Aaron Burdick
Aaron Burdick 2011 年 8 月 17 日
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 件のコメント
Walter Roberson
Walter Roberson 2011 年 8 月 17 日
By the way, surf() followed by view([0 90]) is the same thing as pcolor()

サインインしてコメントする。

採用された回答

Fangjun Jiang
Fangjun Jiang 2011 年 8 月 17 日
hold on;
plot(x,y,'.')
  2 件のコメント
Walter Roberson
Walter Roberson 2011 年 8 月 17 日
Note: this might be difficult to see unless you increase the marker size.
Aaron Burdick
Aaron Burdick 2011 年 8 月 18 日
Thanks so much! That worked!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGeographic Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by