From bug-octave-request Tue Jun 29 16:39:30 1993 Subject: complex entries in matrices From: hodelas at CONTROLS dot msfc dot nasa dot gov (A. Scott Hodel) To: bug-octave Date: Tue, 29 Jun 93 16:49:25 CDT The following m-file produces npoles = 1 in octave, npoles=3 in matlab. ---------------------------------- gpoles = [ -1-i -1+i -0.75] npoles = length(gpoles) ---------------------------------- Compare with -------------------- gpoles = [ 1 -1 ] npoles = length(gpoles)