How do I change the orientation and invert the Y-axis label of an Image plot?

15 ビュー (過去 30 日間)
Tunde Adubi
Tunde Adubi 2022 年 9 月 1 日
回答済み: Star Strider 2022 年 9 月 1 日
Is there a way I could flip the height to start from zero and also change the position of the plot in the same direction?
pts1 = linspace(0, 40, 41); % for heights
pts2 = linspace(-25, 70, 96); % for dBZ
N = histcounts2(heights(:), data.Z(:), pts1, pts2);
% 2D density plot
figure(1)
imagesc(pts2, pts1, N)
colorbar
set(gca,'ColorScale','log')
ylabel('Heights (Km)')
xlabel('(dBZ)')
title('CFAD')
grid on
caxis([0.1 10000])
colormap("jet")

採用された回答

Star Strider
Star Strider 2022 年 9 月 1 日
The y-direction is 'reverse' in image plots, so to correct it:
set(gca, 'YDir','normal')
.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by