[sage-support] Re: Weird matrix bug

2010-08-14 Thread Philipp Schneider
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:

[sage-support] Re: Weird matrix bug

2010-07-23 Thread Jason Grout
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] =