When I am plotting contour plot along with colorbar automatically the scale of the z variable and colorbar becomes like 0.23(any value) x 10^4.Why?
2 ビュー (過去 30 日間)
古いコメントを表示
How can I stop the scale of the z variable and colorbar from becoming something like 0.23(any value) x 10^4. Why is this happening and how do I stop it? I have tried Clim and caxis without any success!
0 件のコメント
採用された回答
Walter Roberson
2013 年 4 月 22 日
The only known way to stop it is to set your own axis labels. For example,
zticks = get(gca, 'ztick');
set(gca, 'zticklabel', cellstr(num2str(zticks(:))))
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Distribution Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!