[Numpy-discussion] dtype for a single char
Robert Kern
robert.kern@gmail....
Wed Mar 3 15:56:35 CST 2010
On Wed, Mar 3, 2010 at 15:14, sam tygier <samtygier@yahoo.co.uk> wrote:
> Hello
>
> today i was caught out by trying to use 'a' as a dtype for a single character. a simple example would be:
>
>>>> array([('a',1),('b',2),('c',3)], dtype=[("letter", "a"), ("number", "i")])
> array([('', 1), ('', 2), ('', 3)],
> dtype=[('letter', '|S0'), ('number', '<i4')])
>
> the fix seems to be using 'a1' instead
>
>>>> array([('a',1),('b',2),('c',3)], dtype=[("letter", "a1"), ("number", "i")])
> array([('a', 1), ('b', 2), ('c', 3)],
> dtype=[('letter', '|S1'), ('number', '<i4')])
>
> this seems odd to me, as other types eg 'i' and 'f' can be used on their own. is there a reason for this?
Other types have a sensible default determined by the platform.
--
Robert Kern
"I have come to believe that the whole world is an enigma, a harmless
enigma that is made terrible by our own mad attempt to interpret it as
though it had an underlying truth."
-- Umberto Eco
More information about the NumPy-Discussion
mailing list