Azzera filtri
Azzera filtri

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

3 visualizzazioni (ultimi 30 giorni)
Unrecognized function or variable 'tsalm'.

Risposte (1)

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

Categorie

Scopri di più su Data Types in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by