On 14 September 2012 11:05, eryksun wrote:
> On Fri, Sep 14, 2012 at 4:36 AM, Bala subramanian
> wrote:
> >
> > 10 # loop over each row
> > 11 for i1, d1 in enumerate(b):
> > 12 # each x in d1 - value in z corresponding to index of x in d1
> > 13 d1=[x-z[d1.index(x)] for x in d1]
> >
On Fri, Sep 14, 2012 at 4:36 AM, Bala subramanian
wrote:
>
> 10 # loop over each row
> 11 for i1, d1 in enumerate(b):
> 12 # each x in d1 - value in z corresponding to index of x in d1
> 13 d1=[x-z[d1.index(x)] for x in d1]
>
> If d1 is a simple list, i can fetch the index of its eleme
Bala subramanian wrote:
> Thank you all for the answer. Below, i have pasted a sample code that
> shows what i am intending to do. The code fails at line 13 as numpy
> array dnt have a index attribute.
>
> 1 #!/usr/bin/env python
> 2 import numpy as np
> 3
> 4 a=np.array([1,2,3,4,5,6,7,8,
Thank you all for the answer. Below, i have pasted a sample code that
shows what i am intending to do. The code fails at line 13 as numpy
array dnt have a index attribute.
1 #!/usr/bin/env python
2 import numpy as np
3
4 a=np.array([1,2,3,4,5,6,7,8,9,10,11,12])
5
6 b=np.reshape(a,(3,4)
On 09/13/2012 04:16 PM, Bala subramanian wrote:
> Friends,
> I have a 2D matrix (a numpy array) and i am looping over each row in
> the matrix. I would like to know how i can find the index of each
> element in a while looping a row. Is there any function in numpy.
>
> Thanks
>
Perhaps you're aski
> On 13 September 2012 21:16, Bala subramanian
> wrote:
>
>> Friends,
>> I have a 2D matrix (a numpy array) and i am looping over each row in
>> the matrix. I would like to know how i can find the index of each
>> element in a while looping a row. Is there any function in numpy.
>>
>
> Your questio
On 13 September 2012 21:16, Bala subramanian wrote:
> Friends,
> I have a 2D matrix (a numpy array) and i am looping over each row in
> the matrix. I would like to know how i can find the index of each
> element in a while looping a row. Is there any function in numpy.
>
Your question could mean
Friends,
I have a 2D matrix (a numpy array) and i am looping over each row in
the matrix. I would like to know how i can find the index of each
element in a while looping a row. Is there any function in numpy.
Thanks
--
C. Balasubramanian
___
Tutor mai