control.lib
LIB "control.lib"; ring r= 0,(x,y,z),dp; matrix M[3][1] = x,y,z; print(M); ==> x, ==> y, ==> z matrix L = leftKernel(M); print(L); ==> 0, -z,y, ==> -y,x, 0, ==> -z,0, x // check: print(L*M); ==> 0, ==> 0, ==> 0