normalize a vector of points belonging to the interval [a,b]

조회 수: 1 (최근 30일)
thoraya
thoraya 2013년 11월 16일
편집: Azzi Abdelmalek 2013년 11월 16일
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

답변 (1개)

Azzi Abdelmalek
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))

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by