How do you get ten random values between -pi/2 and pi/2

4 views (last 30 days)
I want to get ten values for theta in the range of (-pi/2, pi/2)
How do I get these?

Answers (2)

Torsten
Torsten on 26 Mar 2019
theta = -pi/2 + rand(10,1)*pi

John D'Errico
John D'Errico on 26 Mar 2019
Read the help for rand. (Why not do this?)
In there, you will find an explicit example of exactly how to do this.
help rand
doc rand

Categories

Find more on Random Number Generation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!