Histogram distribution with two vectors

5 vues (au cours des 30 derniers jours)
Naser Khan
Naser Khan le 4 Juil 2022
Modifié(e) : Torsten le 5 Juil 2022
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 commentaires
Naser Khan
Naser Khan le 4 Juil 2022
Hi,
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.
My query is whether its possible to plot a histogram based on an X-Y plot?
Thanks
Torsten
Torsten le 5 Juil 2022
Modifié(e) : Torsten le 5 Juil 2022
And what is the solid line in the graph ? Is it a kind of regression line approximating the speed/frequency relationship ?

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 4 Juil 2022
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 commentaires
Naser Khan
Naser Khan le 4 Juil 2022
I see, is there a way I can group my speed vector into segments so the x axis doesn’t become very long?
I believe this may require me to do normalising with a histogram?
Thanks
Image Analyst
Image Analyst le 4 Juil 2022
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;

Connectez-vous pour commenter.

Tags

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by