コード例 #1
0
 /// <summary>
 /// See https://software.intel.com/content/www/us/en/develop/documentation/mkl-developer-reference-fortran/top/lapack-routines/lapack-least-squares-and-eigenvalue-problem-routines/lapack-least-squares-and-eigenvalue-problem-driver-routines/symmetric-eigenvalue-problems-lapack-driver-routines/syev.html#syev
 /// </summary>
 public void Dsyev(string jobz, string uplo, int n, ref double[] a, int offsetA, int ldA, ref double[] w, int offsetW,
                   ref double[] work, int offsetWork, int lWork, ref int info)
 => Lapack.Dsyev(jobz, uplo, ref n, ref a[offsetA], ref ldA, ref w[offsetW], ref work[offsetWork], ref lWork, ref info);