フィルターのクリア

How to flip heatmap Y axis

77 ビュー (過去 30 日間)
Pablo López
Pablo López 2020 年 10 月 31 日
コメント済み: Pablo López 2020 年 11 月 18 日
Hi all,
I am creating a heatmap based on a table with x and z coordinate and the parameter value for each position. I copy here an image of the table.
The command I am using to create the heatmap is this one:
figure = heatmap(table,'x','z','ColorVariable','value');
And the heatmap created is this one.
Question
Does anybody know how could I flip the z values to show the '0' value at the bottom of the heatmap and the value '0.022' at the top instead of the opposite?
Thanks in advance

採用された回答

dpb
dpb 2020 年 10 月 31 日
hHM=heatmap(table,'x','z','ColorVariable','value'); % make heatmap, keep handle
hHM.NodeChildren(3).YDir='normal'; % turn Y-Axis normal direction
Yet another case where TMW has gotten far too clever and hidden the useful/needed properties for some reason only they can divine...
  3 件のコメント
dpb
dpb 2020 年 10 月 31 日
編集済み: dpb 2020 年 11 月 1 日
Hmmm....hadn't thought of that.
To do that programmatically, use
hHM.YDisplayData=flip(hHM.YDisplayData);
Why to have to resort to such trickery instead of just being able to set the axis direction for the axis of choice like any other graphic axis is beyond the pale, however.
This recent penchant (that seems to only be accelreating with time) to create these black/dark-gray graphics objects is just totally misguided im(ns)ho.
Pablo López
Pablo López 2020 年 11 月 18 日
Thanks! Much more elegant and efficient!

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by