OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lapacke_dlartgs.c File Reference
#include "lapacke_utils.h"

Go to the source code of this file.

Functions

lapack_int LAPACKE_dlartgs (double x, double y, double sigma, double *cs, double *sn)

Function Documentation

◆ LAPACKE_dlartgs()

lapack_int LAPACKE_dlartgs ( double x,
double y,
double sigma,
double * cs,
double * sn )

Definition at line 35 of file lapacke_dlartgs.c.

37{
38#ifndef LAPACK_DISABLE_NAN_CHECK
39 if( LAPACKE_get_nancheck() ) {
40 /* Optionally check input matrices for NaNs */
41 if( LAPACKE_d_nancheck( 1, &sigma, 1 ) ) {
42 return -3;
43 }
44 if( LAPACKE_d_nancheck( 1, &x, 1 ) ) {
45 return -1;
46 }
47 if( LAPACKE_d_nancheck( 1, &y, 1 ) ) {
48 return -2;
49 }
50 }
51#endif
52 return LAPACKE_dlartgs_work( x, y, sigma, cs, sn );
53}
lapack_int LAPACKE_dlartgs_work(double x, double y, double sigma, double *cs, double *sn)
int LAPACKE_get_nancheck(void)
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)