角度の求め方
48 views (last 30 days)
Show older comments
cosθ=3.1234とかのθの値ってどうゆうコードを打てば角度が求めれるのですか?あとπ表記と度表記は別のコードを使うのですか?
0 Comments
Accepted Answer
Akira Agata
on 1 Oct 2020
アークコサイン(逆余弦関数)を使って求めることができます。MATLABの関数としては、acos 又は acosd になります。出力される角度θを、前者はラジアン、後者は度として出力します。
% 例: cos(θ) = 0.5 のθを求める
theta_rad = acos(0.5); % = 1.0472 (=pi/3) [rad]
theta_deg = acosd(0.5); % = 60.0 [度]
ちなみに、cosθ=3.1234 だとθの値は角度として求まらない(複素数になる)ですが、合ってますでしょうか?
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!