Effacer les filtres
Effacer les filtres

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

3 vues (au cours des 30 derniers jours)
How to manipulate the vector prob5=rand(1,6) to create a new vector of values that range from 10 through 20?

Réponses (1)

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

Catégories

En savoir plus sur Interpolation of 2-D Selections in 3-D Grids dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by