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!