help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Complex Conjugate


From: Henry F. Mollet
Subject: Re: Complex Conjugate
Date: Wed, 15 Sep 2004 10:48:37 -0700
User-agent: Microsoft-Entourage/10.1.1.2418

Do you mean the following?
octave:1> a = [i,1+i;2i,2+2i]
a =

  0 + 1i  1 + 1i
  0 + 2i  2 + 2i

octave:2> a'  % " ' " is complex conjugate operator
ans =

  0 - 1i  0 - 2i
  1 - 1i  2 - 2i
Henry



on 9/15/04 10:33 AM, robert Macy at address@hidden wrote:

> Is there a simple command that performs the complex
> conjugate on a matrix containing complex variables?
> 
> I've been using "workaround" using real() and imag()
> 
> Couldn't find this anywhere.  Couldn't find any mention in
> the html manual. 
> 
> Also, how do you do a search for *any* word in the TOTAL
> manual?  I've only been able to do a search per page
> section.  
> 
>                - Robert -
> 
> 
> 
> -------------------------------------------------------------
> Octave is freely available under the terms of the GNU GPL.
> 
> Octave's home on the web:  http://www.octave.org
> How to fund new projects:  http://www.octave.org/funding.html
> Subscription information:  http://www.octave.org/archive.html
> -------------------------------------------------------------
> 



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]