On Mon, Feb 9, 2009 at 6:02 AM, Neil wrote:
>
>> > I have two integer arrays of different shape, e.g.
>> >
>> > >>> a
>> >
>> > array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
>> >
>> > >>> b
>> >
>> > array([ 3, 4, 5, 6, 7, 8, 9, 10])
>> >
>> > How can I extract the values that belong to th
A Monday 09 February 2009, Neil escrigué:
> > > I have two integer arrays of different shape, e.g.
> > >
> > > >>> a
> > >
> > > array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
> > >
> > > >>> b
> > >
> > > array([ 3, 4, 5, 6, 7, 8, 9, 10])
> > >
> > > How can I extract the values that belong
> > I have two integer arrays of different shape, e.g.
> >
> > >>> a
> >
> > array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
> >
> > >>> b
> >
> > array([ 3, 4, 5, 6, 7, 8, 9, 10])
> >
> > How can I extract the values that belong to the array a
> > exclusively i.e. array([1,2]) ?
>
You cou
On Mon, 9 Feb 2009 09:45:02 +0100
Francesc Alted wrote:
> A Monday 09 February 2009, Nils Wagner escrigué:
>> Hi all,
>>
>> I have two integer arrays of different shape, e.g.
>>
>> >>> a
>>
>> array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
>>
>> >>> b
>>
>> array([ 3, 4, 5, 6, 7, 8, 9, 10
A Monday 09 February 2009, Nils Wagner escrigué:
> Hi all,
>
> I have two integer arrays of different shape, e.g.
>
> >>> a
>
> array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
>
> >>> b
>
> array([ 3, 4, 5, 6, 7, 8, 9, 10])
>
> How can I extract the values that belong to the array a
> exclusi
Hi all,
I have two integer arrays of different shape, e.g.
>>> a
array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
>>> b
array([ 3, 4, 5, 6, 7, 8, 9, 10])
How can I extract the values that belong to the array a
exclusively i.e. array([1,2]) ?
Nils
__