Borrar filtros
Borrar filtros

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

3 visualizaciones (últimos 30 días)
How to manipulate the vector prob5=rand(1,6) to create a new vector of values that range from 10 through 20?

Respuestas (1)

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

Categorías

Más información sobre Interpolation of 2-D Selections in 3-D Grids en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by