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!