角度の求め方

54 views (last 30 days)
隆信 大島
隆信 大島 on 1 Oct 2020
Commented: 隆信 大島 on 15 Oct 2020
cosθ=3.1234とかのθの値ってどうゆうコードを打てば角度が求めれるのですか?あとπ表記と度表記は別のコードを使うのですか?

Accepted Answer

Akira Agata
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 だとθの値は角度として求まらない(複素数になる)ですが、合ってますでしょうか?
  1 Comment
隆信 大島
隆信 大島 on 15 Oct 2020
ありがとうございます。
0.312...の見間違えでした。

Sign in to comment.

More Answers (0)

Categories

Find more on Environment and Clutter in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!