<< complex Complex imag >>

Scilab Help >> Elementary Functions > Complex > conj

conj

Complex conjugate

Calling Sequence

[y]=conj(x)

Arguments

x,y

real or complex matrix (full or sparse storage)

Description

conj(x) is the complex conjugate of x.

Examples

x=[1+%i,-%i;%i,2*%i];
conj(x)
x'-conj(x)  //x'  is conjugate transpose

Report an issue
<< complex Complex imag >>