フィルターのクリア

Plot Zero on a Contour Plot

7 ビュー (過去 30 日間)
Amanda
Amanda 2012 年 11 月 27 日
I'm plotting z values, 0 to 10, on a contour plot.
When I include data 1 or greater, I obtain a contour plot. Like the following:
longitude = [80 82 95]
latitude = [30 32 35]
temp = [1 4 6; 1 2 7; 3 5 7]
contourf(longitude,latitude,temp)
Now, I want to plot the ZERO VALUE also on the contour plot. While I was expecting one color representing the zero value, instead I obtained a white square.
longitude = [80 82 95]
latitude = [30 32 35]
temp = [0 0 0; 0 0 0; 0 0 0]
contourf(longitude,latitude,temp)
Amanda
  1 件のコメント
Doug Hull
Doug Hull 2012 年 11 月 27 日
Where on the original set of temp data is there an isoline of values equal to zero? The answer is nowhere! That is why you are not getting a zero value. In the second example, all the data is zero, so it is a degenerate problem.

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

回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by