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.

Visible to Intel only — GUID: GUID-D18E3517-8221-4D3C-A64E-6C154BC1BEF8

Document Table of Contents

DSYEVR Example

The routine computes all the eigenvalues and, optionally, the eigenvectors of a square real symmetric matrix A.

The eigenvector v(j) of A satisfies the following formula:

A*v(j) = lambda(j)*v(j)

where

lambda(j) is its eigenvalue.

The computed eigenvectors are orthonormal. The eigenvalues and eigenvectors can be selected by specifying either a range of values or a range of indices of the desired eigenvalues.

C Interface

Please refer to the Matrix Layout section of the C Interface Conventions for the description of Row Major (C default) and Column Major (Fortran default).