Developer Reference

Intel® oneAPI Math Kernel Library LAPACK Examples

ID 766877
Date 12/20/2021
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

?heev function

Computes all eigenvalues and, optionally, eigenvectors of a Hermitian matrix.

Fortran-77 Interface

Calling from Fortran:

call cheev(jobz, uplo, n, a, lda, w, work, lwork, rwork, info)
call zheev(jobz, uplo, n, a, lda, w, work, lwork, rwork, info)

Calling from C:

cheev(jobz, uplo, n, a, lda, w, work, lwork, rwork, info);
zheev(jobz, uplo, n, a, lda, w, work, lwork, rwork, info);

C Interface

lapack_int LAPACKE_cheev(int matrix_layout, char jobz, char uplo, lapack_int n, lapack_complex_float* a, lapack_int lda, float* w);
lapack_int LAPACKE_zheev(int matrix_layout, char jobz, char uplo, lapack_int n, lapack_complex_double* a, lapack_int lda, double* w);