Hi, I have data of temperature that need normalized, subtract by the mean temperature and divide by its standard deviation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Respuestas (1)
KSSV
el 29 de Oct. de 2022
If T is your array; just do:
T_normalized = (T-mean(T))/std(T) ;
0 comentarios
Ver también
Categorías
Más información sobre Visualization and Data Export en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!