How to apply a diff to histogram object?

2 Ansichten (letzte 30 Tage)
fransec
fransec am 21 Mai 2019
Kommentiert: Star Strider am 27 Mai 2019
Hi everybody,
I am trying to apply a difference to an histogram result, which is an object.
H=histogram(matrixvalues,bins);
dH=[0,diff(H)];
but the result is
Undefined function 'diff' for input arguments of type 'matlab.graphics.chart.primitive.Histogram'.
This is because, I think, the H output is an histogram object and not a double.
With the older function hist there are no problems because the output is a double, but with histogram I can not.
Any advices?
Thanks a lot

Akzeptierte Antwort

Star Strider
Star Strider am 21 Mai 2019
I have no idea what you wwant.
Try this:
dH = diff(H.BinCounts);
To se all the available fields, do this:
histogramFields = get(H)
  10 Kommentare
fransec
fransec am 27 Mai 2019
It works! Great!
The only (little) problem is that in this way I have to add one edge more (for example the egds vector is a 52-element long), in order to obtain a h.Values of the same length of that produced by older hist function. So my egds vector will start from negative value, for exampe.
Anyway, thanks!
Star Strider
Star Strider am 27 Mai 2019
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Distribution Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by