C ++での複素数のpolar()関数
複素数の極関数は、複素数を返すために使用されます。
極性() 関数は、C++の複雑なヘッダーファイルで定義されています。複素数の大きさと位相角を取り、これらの値を使用して複素数を生成します。
構文
polar(mag, phase);
パラメータ −生成される複素数の位相と大きさの2つの値が必要です。
戻り値 −関数は複素数を返します。
polar(0.2, 0.5) -> (0.175517,0.0958851)
例
#include<iostream> #include>complex.h> using namespace std; int main () { cout<<"\t\tRUN 1\n"; cout<<"Complex number with magnitude: 5.2 and phase angle: 1.6 is "; cout<<polar(5.2,1.6)<<endl; cout<<"\t\tRUN 2\n"; cout<<"Complex number with magnitude: 0.5 and phase angle: 0.2 is "; cout<<polar(0.5,0.2)<<endl; cout<<"\t\tRUN 3\n"; cout<<"Complex number with magnitude: 0.2 and phase angle: 0.5 is "; cout<<polar(0.2,0.5)<<endl; return 0; }
RUN 1 Complex number with magnitude: 5.2 and phase angle: 1.6 is (-0.151838,5.19778) RUN 2 Complex number with magnitude: 0.5 and phase angle: 0.2 is (0.490033,0.0993347) RUN 3 Complex number with magnitude: 0.2 and phase angle: 0.5 is (0.175517,0.0958851)
-
C ++の複素数のasin()関数?
ここでは、複素数のasin()メソッドを確認します。複素数は、複素ヘッダーファイルを使用して使用できます。そのヘッダーファイルには、asin()関数も含まれています。これは通常のasin()関数の複雑なバージョンです。これは、複素数の複素アークサインを見つけるために使用されます。 この関数は、入力パラメーターとして複素数を取り、出力としてアークサインを返します。アイデアを得るための1つの例を見てみましょう。 例 #include<iostream> #include<complex> using namespace std; int main() { &
-
C ++の複素数のacos()関数?
ここでは、複素数のacos()メソッドを確認します。複素数は、複素ヘッダーファイルを使用して使用できます。そのヘッダーファイルには、acos()関数も含まれています。これは通常のacos()関数の複雑なバージョンです。これは、複素数の複素アークコサインを見つけるために使用されます。 この関数は、入力パラメーターとして複素数を取り、出力としてアークコサインを返します。アイデアを得るための1つの例を見てみましょう。 例 #include<iostream> #include<complex> using namespace std; main() { &nb