normalize a vector of points belonging to the interval [a,b]
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, given an interval [a,b] where a and b can take either positive or negative value. how can i normalize a vector of points belonging to the interval [a,b]. Thanks
댓글 수: 0
답변 (1개)
Azzi Abdelmalek
2013년 11월 16일
편집: Azzi Abdelmalek
2013년 11월 16일
a=10;
b=20;
v=rand(1,10)*5+1
n_data = a+(b-a)*(v-min(v))/( max(v)-min(v))
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!