Hi, I have data of temperature that need normalized, subtract by the mean temperature and divide by its standard deviation

2 views (last 30 days)
Unrecognized function or variable 'tsalm'.

Answers (1)

KSSV
KSSV on 29 Oct 2022
If T is your array; just do:
T_normalized = (T-mean(T))/std(T) ;

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!