![]() |
| サイトマップ | |
|
関数 mulcpx
は、2つの複素数ブロックを乗算します。
mulcpx
(block, block)
両方の入力ブロックの長さは同じにする必要があります。関数 mulcpx
は、2つの範囲の虚数乗法を1つのブロックで返します。
u = {{1,1,0},{0,1,1}}
の場合、mulcpx(u,u)
は {{1,0,-1}, {0,2,0}}
を返します。
The mulcpx function multiplies two blocks of complex numbers together.
mulcpx(block, block)
Both input blocks should be the same length. The mulcpx function returns a block that contains the complex multiplication of the two ranges.
If u = {{1,1,0},{0,1,1}}, the operation mulcpx(u,u) returns {{1,0,-1}, {0,2,0}}.