Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - Português

Change language to:
English - Français - 日本語 - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda do Scilab >> Funções Elementares > Complex > conj

conj

matriz complexa conjugada

Seqüência de Chamamento

y = conj(x)

Parâmetros

x, y

matrizes de reais ou complexos (full or sparse storage). Matrizes de polinômios ou razões de polinmios, com coeficientes reais ou complexos.

Descrição

conj(x) é a matriz conjugada complexa de x.

Exemplos

x = [1+%i, -%i; %i, 2*%i];
conj(x)
x'-conj(x)  //x'  é a matriz transposta conjugada

// Com polinômios:
x = [%z-%i 2*%i %i*%z^2-1]
conj(x)

// Com razões de polinômios :
A = [ %z/(1-%z)  (1-%z)/%z^2]
B = A(1,[2 1])
C = A + %i*B
conj(C)
B,imag(conj(C))

Ver também

  • quote — (') transpose operator, string delimiter

Histórico

VersãoDescrição
6.0 Extension to rationals
Report an issue
<< complex Complex imag >>

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:
Thu Feb 14 15:00:39 CET 2019