How to manipulate the vector prob5 = rand(1,6) to create a new vector of values that range from 10 through 20?

3 次查看(过去 30 天)
How to manipulate the vector prob5=rand(1,6) to create a new vector of values that range from 10 through 20?

回答(1 个)

Image Analyst
Image Analyst 2015-11-25
it's just very simple algebra:
prob5=rand(1,6)
minp = min(prob5)
maxp = max(prob5)
out = 10 + 10 * (prob5 - minp) / (maxp-minp)

类别

Help CenterFile Exchange 中查找有关 Interpolation of 2-D Selections in 3-D Grids 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by