Borrar filtros
Borrar filtros

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

3 visualizaciones (últimos 30 días)
Unrecognized function or variable 'tsalm'.

Respuestas (1)

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

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by