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

2 次查看(过去 30 天)
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?

采纳的回答

Rik
Rik 2020-8-2
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Histograms 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by