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

조회 수: 1 (최근 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에서 Visualization and Data Export에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by