Ask Your Question

caucher's profile - activity

2022-01-01 21:45:46 +0200 received badge  Notable Question (source)
2021-06-08 23:24:37 +0200 received badge  Popular Question (source)
2019-03-29 08:19:28 +0200 asked a question How do I get the result of right_kernel into a matrix?

Hello, I have a simple program I am running where I define a matrix C, then define

B=C.right_kernel()

I would then like to create another matrix, D, that is a block matrix with C and B as blocks, C on top of B. So far my code for that is

Dlist = []

for i in range(len(rowsofmatrix)):

Dlist.append(C[i,:])

for i in range(20-len(rowsofmatrix)):

Dlist.append(B[i,:])

where rowsofmatrix is a list I used to define the matrix C. The Dlist.append(C[I,:]) works just fine, but the second one involving B does not, and I imagine this has something to do with the form of B. Is there a way I can express B as a regular matrix? Or, alternatively, is there a better way to do this altogether?

Thanks