/// <summary>
 /// Returns adjugate matrix
 ///
 /// O(N^5)
 /// </summary>
 public GenTensor <T, TWrapper> Adjoint()
 => Inversion <T, TWrapper> .Adjoint(this);