Histogram distribution with two vectors
조회 수: 11 (최근 30일)
이전 댓글 표시
Hi there,
I have two separate vectors, one for vehicle power and another one for vehicle speed. I am trying to have a histogram to show a power vs speed distribution. I have attached an image to assist with understanding.
Thanks,
댓글 수: 3
답변 (1개)
Image Analyst
2022년 7월 4일
Since you say "I have two vectors for the two axes. I am essentially looking to have the frequency (y-axis) of the power at different speed (x-axis). The speeds can be spaced out in steps of 5 or 10."
then your y vector is already the frequency (histogram) so no need to call histogram() because you've already done that. The histogram function can do the plotting for you, or if you'd rather plot the frequency as bars like your graphic showed, then you can use bar
bar(speedVector, frequencyVector);
grid on;
댓글 수: 2
Image Analyst
2022년 7월 4일
Sure, when you got your y values (counts in each hisotgram bin), you could specify the bin edges if you wish.
% Specify which x values should be grouped into each bin
% by definining the edges (dividing lines) between bins.
edges = [-inf, 0:20:100, inf];
% Get the y values which is the frequency (count)
% of how many data points are in each bin.
[counts, edges] = histcounts(data, edges);
bar(edges(1:end-1), counts);
grid on;
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!