what about astype?

a.astype(t) -> Copy of array cast to type t.

    Cast array m to type t.  t can be either a string representing a
typecode,
    or a python type object of type int, float, or complex.

L.


On 10/5/07, dmitrey <[EMAIL PROTECTED]> wrote:
>
> hi all,
> I have an array like
> array([ 1.,  0.,  2.,  -10.])
> what is most efficient (i.e. fastest) way to convert the one to array of
> integers?
> array([ 1,  0,  2,  -10])
>
> Thx in advance, D.
> _______________________________________________
> Numpy-discussion mailing list
> [email protected]
> http://projects.scipy.org/mailman/listinfo/numpy-discussion
>
_______________________________________________
Numpy-discussion mailing list
[email protected]
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to