Creating a histogram,
17 次查看(过去 30 天)
显示 更早的评论
What command should I use to create a histogram of the data in x, with 7 bins that start on the 10's?
0 个评论
回答(3 个)
Mattes Köppe
2021-4-9
To crate a Histogram use
histogram(x)
Since you want to specifiy the number of bins you can use
histogram(X,nbins)
In your case nbins would be 7.
The edges of the bins are choosen automatically depending on your inputvector x or u can specify them using
histogram(X,edges)
0 个评论
Image Analyst
2021-4-9
Try this:
% Create a hundred thousand values ranging from 0 - 1000.
numValues = 100000;
r = 1000 * rand(numValues, 1);
% Define bin edges on "10" boundaries, and get 7 bins:
edges = [0 : 10 : 70]
% Note: any x values beyond 70 will be totally ignored - they will not be lumped into the rightmost bin.
% If you want ALL the values, make the last bin inf
% edges = [0 : 10 : 70, inf]
h = histogram(r, edges)
% Let's see how many values got considered:
fprintf('The data has %d values. This histogram has %d total counts in it.\n', ...
numValues, sum(h.Values));
% Make the plot fancy:
grid on;
title('Histogram of x', 'FontSize', 18);
xlabel('x value', 'FontSize', 18);
ylabel('Counts', 'FontSize', 18);
ax = gca; % Get handle to current axes.
% Let's have the tick marks go outside the graph instead of poking inwards in to the bar.
ax.TickDir = 'out';

0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!