Python 2.3.3 (#2, Jan 4 2004, 12:24:16)
[GCC 3.3.3 20031229 (prerelease) (Debian)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import Numeric
>>> import MLab
>>> import Scientific.Statistics
>>> MLab.std(Numeric.array([255,255], Numeric.Int0))
0.0
>>> MLab.std(Numeric.array([255,255], Numeric.UnsignedInt

)
181.01933598375618
>>> Scientific.Statistics.standardDeviation(Numeric.ar ray([255,255], Numeric.UnsignedInt

)
0.0
It seems to me that the return values should all be the same. Am I missing
something simple?
--kyler