1. 程式人生 > >【 MATLAB 】conj 函式介紹(複共軛)

【 MATLAB 】conj 函式介紹(複共軛)

conj

Complex conjugate

Syntax

ZC = conj(Z)

Description

ZC = conj(Z) returns the complex conjugate of the elements of Z.

Algorithms

If Z is a complex array:

conj(Z) = real(Z) - i*imag(Z)