LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_zlaset ( int  matrix_layout,
char  uplo,
lapack_int  m,
lapack_int  n,
lapack_complex_double  alpha,
lapack_complex_double  beta,
lapack_complex_double a,
lapack_int  lda 
)

Definition at line 36 of file lapacke_zlaset.c.

40 {
41 
42  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
43  LAPACKE_xerbla( "LAPACKE_zlaset", -1 );
44  return -1;
45  }
46 
47 /*****************************************************************************
48 * Note: we do not check NaNs in A since the goal of this subroutine is to
49 * initialized A. It is OK if A has NaNs in input.
50 *****************************************************************************/
51 
52 
53 #ifndef LAPACK_DISABLE_NAN_CHECK
54  /* Optionally check input matrices for NaNs */
55  if( LAPACKE_z_nancheck( 1, &alpha, 1 ) ) {
56  return -5;
57  }
58  if( LAPACKE_z_nancheck( 1, &beta, 1 ) ) {
59  return -6;
60  }
61 #endif
62 
63  return LAPACKE_zlaset_work( matrix_layout, uplo, m, n, alpha, beta, a, lda );
64 }
lapack_logical LAPACKE_z_nancheck(lapack_int n, const lapack_complex_double *x, lapack_int incx)
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
lapack_int LAPACKE_zlaset_work(int matrix_layout, char uplo, lapack_int m, lapack_int n, lapack_complex_double alpha, lapack_complex_double beta, lapack_complex_double *a, lapack_int lda)
#define LAPACK_COL_MAJOR
Definition: lapacke.h:120
void LAPACKE_xerbla(const char *name, lapack_int info)

Here is the call graph for this function: