Heatmap with log scale axis

Hi,
I have been trying to plot a heatmap with a log scale x - axis, such as the one shown in the attachment.
I have tried to change the scale of the axis by:
set(gca, 'XScale', 'log')
But the error "The name 'XScale' is not an accessible property for an instance of class 'matlab.graphics.chart.HeatmapChart'." shows up.
Is there another way to get around this error?

回答 (2 件)

David Hill
David Hill 2020 年 1 月 9 日

0 投票

Look at:
semilogx()

1 件のコメント

David Hill
David Hill 2020 年 1 月 9 日
Disregard, should have looked at your file.

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

Star Strider
Star Strider 2020 年 1 月 9 日

0 投票

That actually looks more like a surf plot.
Try something like this:
zdata = rand(10,50);
figure
surf(zdata)
view(0,90)
set(gca, 'XScale','log', 'Xdir','reverse')
axis('tight')
Experiment to get the result you want.

カテゴリ

ヘルプ センター および File ExchangeData Distribution Plots についてさらに検索

製品

リリース

R2019b

質問済み:

2020 年 1 月 9 日

コメント済み:

2020 年 1 月 9 日

Community Treasure Hunt

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

Start Hunting!

Translated by