Effacer les filtres
Effacer les filtres

What are some ways of normalizing my data with MATLAB?

1 vue (au cours des 30 derniers jours)
Sean Quinn
Sean Quinn le 27 Juin 2017
Modifié(e) : KSSV le 27 Juin 2017
I have a series of concentration transients that go from 0 to 0.5s, but the problem is they start at different y-values and there is some noise in the data. They rise exponentially and plataeu and have roughly the same amplitude. I want to normalize them appropriately so that where they start on the y-axis is the same. How can I do this with MATLAB without introducing too much error?

Réponse acceptée

KSSV
KSSV le 27 Juin 2017
Modifié(e) : KSSV le 27 Juin 2017
Let x (a vector) be your data.....you can normalize your data as below:
z = (x-min(x))/(max(x)-min(x)) ;

Plus de réponses (0)

Catégories

En savoir plus sur View and Analyze Simulation Results dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by