How to reverse data normalized with bsx function
Ältere Kommentare anzeigen
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 Kommentare
Iain
am 22 Mai 2013
I don't understand your question...
Greg Heath
am 24 Mai 2013
Bearbeitet: Greg Heath
am 24 Mai 2013
What is RVM?
size(yTest) = ?
help zscore
doc zscore
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Arduino Hardware finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!