inverse function of zscore?

13 ビュー (過去 30 日間)
pietro
pietro 2014 年 6 月 7 日
コメント済み: pietro 2014 年 6 月 7 日
Hi all,
is there any inverse function of zscore?

採用された回答

li haitao
li haitao 2014 年 6 月 7 日
編集済み: li haitao 2014 年 6 月 7 日
Give you an exmaple:
>> load('lawdata.mat')
>> [Z,gpamean,gpastdev] = zscore(gpa);
>> gpa2=Z*gpastdev+gpamean;
>> gpa2-gpa
ans =
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
So gpa2 is the same with gpa.
  1 件のコメント
pietro
pietro 2014 年 6 月 7 日
Thanks to all, I supposed there was an embedded function I wanted to use to improve the code readability.

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

その他の回答 (1 件)

Star Strider
Star Strider 2014 年 6 月 7 日
To get x from Z knowing the mean (mu) and standard deviation (s):
x = Z*s + mu

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by