How to Generate a Random # Between -1 and 1?

10 vues (au cours des 30 derniers jours)
Tom Keaton
Tom Keaton le 26 Nov 2018
Commenté : Tom Keaton le 27 Nov 2018
Hello,
I have a simple question. I want to produce a random number between -1 and 1 as the title states. I tried doing this already:
randnum = rand(1)
But this will always be positive because it will generate between 0 and 1. So I tried this:
randnum = rand([-1,1])
But I receive an empty, double column vector.

Réponse acceptée

Image Analyst
Image Analyst le 26 Nov 2018
Did you look in the help where is told you how to get a number in the range from a to b?
r = 2 * rand - 1;
  1 commentaire
Tom Keaton
Tom Keaton le 27 Nov 2018
I did, but I from the information there, I couldn't figure out how to apply it to this specific case. Thank you for the answer!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Random Number Generation 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