On Jul 23, 9:36 pm, Jason Grout wrote:
> On 7/23/10 11:35 AM, VictorMiller wrote:
>
> > There's abugin assigning 1 x 1 submatrices. assigning any
> > submatrices with dimensions bigger than 1 seems to work as expected:
>
> >sage: A =matrix(GF(2),100,100)
> >sage: C1 =matrix(GF(2),[[1]])
> >sage:
On 7/23/10 11:35 AM, VictorMiller wrote:
There's a bug in assigning 1 x 1 submatrices. assigning any
submatrices with dimensions bigger than 1 seems to work as expected:
sage: A = matrix(GF(2),100,100)
sage: C1 = matrix(GF(2),[[1]])
sage: C2 = matrix(GF(2),[[0,1],[1,0]])
sage: A[88:90,88:90] =