![]() |
| サイトマップ | |
|
関数 real
は、複素数のブロックから実数の値を抜き出します。
real
(range)
引数 range には、複素数を指定します。
x = complex ({1,2,3,...,9,10}, {0,0,...,0})
の場合、real(x)
は虚数を除外した {1,2,3,4,5,6,7,8,9,10}
を返します。
The real function strips the real values from a complex block of numbers.
real (range)
The range argument consists of complex numbers.
If x = complex ({1,2,3,...,9,10}, {0,0,...,0}), the operation real(x)returns {1,2,3,4,5,6,7,8,9,10}, leaving the imaginary values out.