次の方法で共有


complex::imag

複雑なコンポーネントの虚数部を抽出します。

Type imag( ) const;
Type imag(const Type& _Right);

パラメーター

  • _Right
    架空の値が配置される複素数。

戻り値

複素数の虚数部。

解説

複雑なのは、+ Biとパーツまたはコンポーネントは Im (a + bi) = bです。

使用例

// complex_imag.cpp
// compile with: /EHsc
#include <complex>
#include <iostream>

int main( )
{
   using namespace std;

   complex <double> c1 ( 4.0 , 3.0 );
   cout << "The complex number c1 = " << c1 << endl;

   double dr1 = c1.real ( );
   cout << "The real part of c1 is c1.real ( ) = "
        << dr1 << "." << endl;

   double di1 = c1.imag ( );
   cout << "The imaginary part of c1 is c1.imag ( ) = "
        << di1 << "." << endl;
}
  
  

必要条件

ヘッダー: <complex>

名前空間: std

参照

関連項目

complex Class