Plotting very small values using bar command
8 ビュー (過去 30 日間)
古いコメントを表示
Hi, I have a series of data such as 1.11134,0.01823643,0.08337726 and so on. Can anybody guide how can i plot this series of numbers using bar command. Thank you.
3 件のコメント
採用された回答
Pawel Jastrzebski
2018 年 7 月 17 日
If you have a mix of relatively high and low values, you might want to consider using the logarithmic scale for the y-axis, i.e.:
y = [1.11134,0.01823643,0.08337726];
figure
ax = gca();
b = bar(y);
set(ax,...
'YScale','log');
2 件のコメント
Swati Sarangi
2020 年 12 月 4 日
Hi,
How can I set axis property for small values of the order 10^(-10)?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!