What are some ways of normalizing my data with MATLAB?

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

采纳的回答

KSSV
KSSV 2017-6-27
编辑:KSSV 2017-6-27
Let x (a vector) be your data.....you can normalize your data as below:
z = (x-min(x))/(max(x)-min(x)) ;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 View and Analyze Simulation Results 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by