Mapping of a random number in one range to another range

83 vues (au cours des 30 derniers jours)
Omkar Bhanap
Omkar Bhanap le 28 Jan 2018
Commenté : Omkar Bhanap le 28 Jan 2018
How to re-map a number from one range to another in MATLAB. I've a random number in the range 0 to 5. Now I want to convert it into range of 12.5 to 37.5 . Please help me out for this problem.

Réponse acceptée

Stephen23
Stephen23 le 28 Jan 2018
Modifié(e) : Stephen23 le 28 Jan 2018
A trivial solution using interp1:
>> num = 2.3;
>> interp1([0,5],[12.5,37.5],num)
ans = 24

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by