imagescのy軸を対数スケールにする方法
6 views (last 30 days)
Show older comments
imagescのy軸を対数スケールにする方法を教えて下さい。
例えば以下のようにすると、軸の表示は対数ですが、タイルは線形に配置され上手くできません。
x = [100 1000];
y = [100 1000];
C = [0 2 4 6; 8 10 12 14; 16 18 20 22];
imagesc(x,y,C)
set(gca,"Yscale","log")
ylim([50 2000])
meshやsurfで行えば所望のことは出来ますが、大きいデータで実行すると動作が重くなるのでimagescで出来る方法を探しています。
0 Comments
Answers (0)
See Also
Categories
Find more on 対数正規分布 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!