How to reverse data normalized with bsx function
古いコメントを表示
I used the code below to normalise the targets to perform RVM regression.
mn1 = mean(yTest);
sd1 = std(yTest);
sd1(sd1==0) = 1;
ynV = bsxfun(@minus,yTest,mn1);
ynV = bsxfun(@rdivide,ynV,sd1);
Can you please help to extract the predicted targets ..Thank you..
2 件のコメント
Iain
2013 年 5 月 22 日
I don't understand your question...
Greg Heath
2013 年 5 月 24 日
編集済み: Greg Heath
2013 年 5 月 24 日
What is RVM?
size(yTest) = ?
help zscore
doc zscore
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Arduino Hardware についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!