/// <summary>
 /// See https://software.intel.com/en-us/mkl-developer-reference-fortran-potri#64544865-D81B-4811-84AA-D218A680AA3D
 /// </summary>
 public void Dpotri(string uplo, int n, double[] a, int offsetA, int ldA, ref int info)
 => Lapack.Dpotri(uplo, ref n, ref a[offsetA], ref ldA, ref info);