maxima_adjoint
* Returns the adjoint of the matrix M. * The adjoint matrix is the transpose of the matrix of cofactors of M.
(%i) adjoint( matrix( [a,b], [c,d] ) ); (%o) matrix( [d,-b], [-c,a] )