mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-13 19:02:40 +00:00
5 lines
97 B
Matlab
5 lines
97 B
Matlab
function x = normalize(x, mu, sigma)
|
|
x=bsxfun(@minus,x,mu);
|
|
x=bsxfun(@rdivide,x,sigma);
|
|
end
|