How to normalize data from a periodogram

4 visualizzazioni (ultimi 30 giorni)
Hello,
I need to "normalize" some data that are always going up, but I don't know how I can do that.
This is the curve (it is a chi-square periodogram):
And I need something like this:
Note: for what I need, there is no problem if I lose the data value. E.g. if the value of 0.36 becomes 0.24.
Does anyone know any method for doing this?

Risposta accettata

Kelvin Prado
Kelvin Prado il 10 Set 2016
I solved the problem using linear regression:
The points below the blue line receives zero, and the value points above the blue line are subtracted by the value of the same point in the linear regression. Something like this:
if data[x] < linearRegression[x]
data[x] = 0
else
data[x] = data[x] - linearRegression[x]
end
Note: in this case I don't care about the value itself, I just need to see where the peak occurs.

Più risposte (0)

Categorie

Scopri di più su Simulation, Tuning, and Visualization in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by