フィルターのクリア

does any one know how to generate this kind of graph and what it is called...??

2 ビュー (過去 30 日間)
ali ahmed
ali ahmed 2017 年 11 月 13 日
コメント済み: Walter Roberson 2017 年 11 月 18 日
What varialbles will i be needing to generate such a graph...??

採用された回答

Walter Roberson
Walter Roberson 2017 年 11 月 13 日
image() or imshow() can potentially generate the left part. The right part is colorbar()
You would need a matrix of temperature data, with the matrix having roughly 3 times as many rows as columns.
I do not think the output is symmetric -- the green band towards the upper left corner is wider than the green band towards the lower right. It will not be enough to have a radius and a drop-off function as just a function of the radius.
  4 件のコメント
Walter Roberson
Walter Roberson 2017 年 11 月 17 日
Can you attach your data?
Walter Roberson
Walter Roberson 2017 年 11 月 18 日
With that resolution of data, about the most you can justify is
imagesc(t);
set(gca, 'ydir', 'normal')
But you could
[r, c] = size(t);
newx = linspace(1,c);
newy = linspace(1,r);
G = griddata(1:c, 1:r, t, newx, newy.');
imagesc([1,c],[1,r],G)
set(gca, 'ydir', 'normal')

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

その他の回答 (1 件)

ali ahmed
ali ahmed 2017 年 11 月 18 日

カテゴリ

Help Center および File ExchangeLighting, Transparency, and Shading についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by