Plotting very small values using bar command

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 个评论

What is the problem?
i want to plot series of very small numbers using bar command. but when i try to execute the code the figure comes empty.
Can you show us your code so far? If possible, attach the data as well

请先登录,再进行评论。

 采纳的回答

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 个评论

Hi,
How can I set axis property for small values of the order 10^(-10)?

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 App Building 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by