angle function in matlab formula

10 ビュー (過去 30 日間)
Manu Chaudhary
Manu Chaudhary 2022 年 9 月 22 日
編集済み: James Tursa 2022 年 9 月 23 日
Hi everyone,
I am trying to understand the functionality of angle function of matlab. I am trying to convert my matlab code(which we use for proof of concept) to C++ implementation.
input to angle function - 0.487936206701072 + 0.660466136142335i
output of angle function - 0.934517679414299
I know it must be tan-inverse(img/real) with some other constant.
Please help me with the formula?

回答 (1 件)

Torsten
Torsten 2022 年 9 月 22 日
編集済み: Torsten 2022 年 9 月 22 日
It's all written in the MATLAB documentation of "angle":
Algorithms
angle takes a complex number z = x + iy and uses the atan2 function to compute the angle between the positive x-axis and a ray from the origin to the point (x,y) in the xy-plane.
Here is the "proof":
format long
z = 0.487936206701072 + 0.660466136142335*1i;
angle(z)
ans =
0.934517679414299
atan2(imag(z),real(z))
ans =
0.934517679414299
  7 件のコメント
Manu Chaudhary
Manu Chaudhary 2022 年 9 月 23 日
Yes, atan function works in c++ but not atan2.
Torsten
Torsten 2022 年 9 月 23 日

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCall C++ from MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by