Wiki
Python
Aide
edit SideBar
def transvection(A, Y, k, i, c): A[k,:] = A[k,:]-c*A[i,:] Y[k,:] = Y[k,:]-c*Y[i,:]