Path: news.mathworks.com!not-for-mail
From: "Bruno Luong" <b.luong@fogale.findmycountry>
Newsgroups: comp.soft-sys.matlab
Subject: Re: i <= 0 ??
Date: Fri, 30 Oct 2009 21:22:01 +0000 (UTC)
Organization: FOGALE nanotech
Lines: 16
Message-ID: <hcfldp$pr1$1@fred.mathworks.com>
References: <hcfjrm$jcs$1@fred.mathworks.com>
Reply-To: "Bruno Luong" <b.luong@fogale.findmycountry>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1256937721 26465 172.30.248.37 (30 Oct 2009 21:22:01 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 30 Oct 2009 21:22:01 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 390839
Xref: news.mathworks.com comp.soft-sys.matlab:581415


And you have not finish with another astonishing rule:

>> sort([0 1 -2])

ans =

    -2     0     1 

 >> sort([1i 1 -2])

ans =

   1.0000                  0 + 1.0000i  -2.0000          % 1 <= -2 !!!


% Bruno