I need to normalize a vector size 82x1
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
I have a vector 82x1 with random numbers and i need to put this vector with values between 0 to 1 and keep the same size 82x1.
Antworten (1)
Thorsten
am 26 Okt. 2015
x = randn(82,1);
x = (x - min(x))/(max(x)-min(x));
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!