From: Bill B. <wb...@gm...> - 2006-07-24 23:42:21
|
> > And I think byteorder matters when comparing dtypes: > > >>> numpy.dtype('>f4') == numpy.dtype('<f4') > > False Ohhhhh -- that '<' part is indicating *byte order* ?! I thought it was odd that numpy could only tell me the type was "less than f4", which I assumed must be shorthand for "less than or equal to f4". Makes much more sense now! --bb |