binning the x-axis of a plot
显示 更早的评论
I need to create bins for the x-axis of my plot. The axis goes from 0 to 20, and I need to make bins corresponding to every .10 of a value; i.e. 5.0 to 5.10. How would I go about doing this?
回答(1 个)
Walter Roberson
2016-2-9
xbins = 0 : 0.10 : 20;
4 个评论
jgillis16
2016-2-9
Walter Roberson
2016-2-9
Include it in what sense? Do you want each point labeled with its bin number? Do you want a second x axis that is labeled with bin numbers?
jgillis16
2016-2-9
Walter Roberson
2016-2-9
xbins = 0 : 0.10 : 20;
plot(r,txx2);
set(gca, 'xtick', xbins)
But what I suspect you want is something closer to
bar(r, txx2)
类别
在 帮助中心 和 File Exchange 中查找有关 2-D and 3-D Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!