フィルターのクリア

How to plot a contour plot of 2-dimensional array within specified limits of array size?

2 ビュー (過去 30 日間)
Ashutosh
Ashutosh 2013 年 11 月 13 日
コメント済み: Walter Roberson 2013 年 11 月 14 日
I want to plot contour plots of temperature which is the output of my program. It is a 2D plot so. I am plotting with the following command [cout hand] = contour(theta). In the program I get values of theta(i,j) for i in the range of 2 to 17 and j from 2 to 29. However the plot of theta shows it from i and j starting from zero. How should I plot such that I get it from point (2,2).

回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 11 月 13 日
axis([2 17], [2 29])
  2 件のコメント
Ashutosh
Ashutosh 2013 年 11 月 14 日
Can you please explain how to put it exactly? I have used this command [cout hand]= contour(theta)
How to incorporate axis limits in this?
Walter Roberson
Walter Roberson 2013 年 11 月 14 日
contour(theta);
axis([2 17], [2 29]);

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

カテゴリ

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