Your message dated Wed, 22 Apr 2009 12:25:15 +0200
with message-id <[email protected]>
and subject line Re: Bug#525113: Inconsistant complex matrix multiplication
has caused the Debian Bug report #525113,
regarding Inconsistant complex matrix multiplication
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
525113: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525113
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: octave3.0
Version: 1:3.0.1-7
Arch: i386
Severity: grave
Hi,
I've just realized that I can multiply a real 2x2 matrix by a complex vector.
Regards,
Laurent
octave:1> [1, 0.1; 0.68358, 0.72985] * [1; 1i]
ans =
1.00000 + 0.00000i
0.68358 + 0.00000i
octave:2> [1, 1i] * [1, 0.1; 0.68358, 0.72985]'
ans =
1.00000 + 0.10000i 0.68358 + 0.72985i
--
Dr. Laurent Mazet -=- "Use the source, Luke" -=- [email protected]
--- End Message ---
--- Begin Message ---
Version: 1:3.0.5-2
* Laurent Mazet <[email protected]> [2009-04-22 12:01]:
> Package: octave3.0
> Version: 1:3.0.1-7
> Arch: i386
> Severity: grave
>
> Hi,
>
> I've just realized that I can multiply a real 2x2 matrix by a complex vector.
>
> Regards,
>
> Laurent
>
> octave:1> [1, 0.1; 0.68358, 0.72985] * [1; 1i]
> ans =
>
> 1.00000 + 0.00000i
> 0.68358 + 0.00000i
>
> octave:2> [1, 1i] * [1, 0.1; 0.68358, 0.72985]'
> ans =
>
> 1.00000 + 0.10000i 0.68358 + 0.72985i
It works in version 3.0.5:
$ octave --version | tac | tail -1
GNU Octave, version 3.0.5
$ echo '[1, 0.1; 0.68358, 0.72985] * [1; 1i]' | octave -qf
ans =
1.00000 + 0.10000i
0.68358 + 0.72985i
--
Rafael
--- End Message ---