How do I plot distribution of time lags using histogram with a smoothed line?

2 views (last 30 days)
x=[-24,54,90,0,0,-36,-30,42,6,54,48,-36,72,12,-42]; %time lags
h=histogram(x)
xticklabels(-48:24:96)
%y-axis: count (how many times lag value appeared in x)
I would want a smoothed line of the lag values (any time resolution).
If I use plot, what values of y should I input?

Accepted Answer

Rik
Rik on 2 Aug 2020
h.BinCounts contains the height of each bar and h.BinEdges can be used to find the bin centers. If you want to smooth the resulting line, you will have to use some form of interpollation. I doubt you will get a nice result with so few data points.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!