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

3 次查看(过去 30 天)
Unrecognized function or variable 'tsalm'.

回答(1 个)

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

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by