Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2024.0.0 - English


conj

Complex conjugate

Syntax

[y] = conj(x)

Arguments

x,y

Matrices of real or complex numbers (full or sparse storage). Matrices of polynomials or rationals, with real or complex coefficients.

Description

conj(x) components are the complex conjugate of x components.

Examples

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

// With polynomials:
x = [%z-%i 2*%i %i*%z^2-1]
conj(x)

// With rationals:
A = [ %z/(1-%z)  (1-%z)/%z^2]
B = A(1,[2 1])
C = A + %i*B
conj(C)
B,imag(conj(C))

See also

  • quote — (') transpose operator, string delimiter

History

VersionDescription
6.0 Extension to rationals
Report an issue
<< complex Complex numbers csgn >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Oct 24 14:30:02 CEST 2023