How to Mapping Values
10 ビュー (過去 30 日間)
古いコメントを表示
how to map values of (3 to 4) to (1.4 to 4)?
thanks.
2 件のコメント
採用された回答
M
2017 年 12 月 1 日
Suppose you have :
x=[3.35 3.4 3.8 3.9 4 4.08];
and you want to scale it to the interval [a b]
a=1.4;
b=4;
you can do it like this :
y = (x-min(x))*(b-a)/(max(x)-min(x)) + a;
y =
1.4000 1.5781 3.0027 3.3589 3.7151 4.0000
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!