Developer Reference for Intel® oneAPI Math Kernel Library for Fortran

ID 766686
Date 12/16/2022
Public

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

Document Table of Contents

LAPACK Linear Equation Routines

This section describes routines for performing the following computations:

  • factoring the matrix (except for triangular matrices)

  • equilibrating the matrix (except for RFP matrices)

  • solving a system of linear equations

  • estimating the condition number of a matrix (except for RFP matrices)

  • refining the solution of linear equations and computing its error bounds (except for RFP matrices)

  • inverting the matrix.

To solve a particular problem, you can call two or more computational routines or call a corresponding driver routine that combines several tasks in one call. For example, to solve a system of linear equations with a general matrix, call ?getrf (LU factorization) and then ?getrs (computing the solution). Then, call ?gerfs to refine the solution and get the error bounds. Alternatively, use the driver routine ?gesvx that performs all these tasks in one call.