Filter löschen
Filter löschen

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

3 Ansichten (letzte 30 Tage)
Unrecognized function or variable 'tsalm'.

Antworten (1)

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

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by