Generating random angles between interval

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

답변 (1개)

Star Strider
Star Strider 2022년 11월 2일
Try something like this —
random_angles3 = rand(1,3)*2*pi - pi
random_angles3 = 1×3
-0.5707 1.4107 -2.3760
random_angles1000 = rand(1,1000)*2*pi - pi;
figure
histogram(random_angles1000, 25)
.

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품

릴리스

R2022a

질문:

2022년 11월 2일

답변:

2022년 11월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by