Different kind of normalization

3 ビュー (過去 30 日間)
Sam Da
Sam Da 2011 年 3 月 15 日
回答済み: Steven Lord 2020 年 5 月 11 日
I have read in Matlab that normalization of a vector is u/norm(u).
However, I have a matrix (N x N)where the columns are different vectors. I want for each element of column vectors to do something like: (u(i) - mean(u))/std(u) without looping so that at the end of it each column vectors are bunch of standard normals.
Is there a standard way to do it in matlab or do I really have to code the loop.

採用された回答

Oleg Komarov
Oleg Komarov 2011 年 3 月 15 日
% Create standard normal distributed samples with std = 100;
A = randn(100000,10)*100;
% Normalize
B = bsxfun(@rdivide,bsxfun(@minus,A,mean(A)), std(A));
% Check first column
hist(B(:,1),100)
Note that mean and std operate along rows, i.e. for a matrix they give a result for each column.
Oleg
  1 件のコメント
Zeinab
Zeinab 2020 年 5 月 11 日
Thanks!

サインインしてコメントする。

その他の回答 (2 件)

Matt Tearle
Matt Tearle 2011 年 3 月 15 日
If you have Statistics Toolbox, use uhat = zscore(u).

Steven Lord
Steven Lord 2020 年 5 月 11 日
Use the normalize function.

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by