Generating random angles between interval
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How would I generate three random angles between (-pi to pi)?
ex) q= [theta1 theta2 theta3], all theta are random numbers between -pi to pi
0 commentaires
Réponses (1)
Star Strider
le 2 Nov 2022
Try something like this —
random_angles3 = rand(1,3)*2*pi - pi
random_angles1000 = rand(1,1000)*2*pi - pi;
figure
histogram(random_angles1000, 25)
.
0 commentaires
Voir également
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!