zlacgv.c

来自「SuperLU is a general purpose library for」· C语言 代码 · 共 77 行

C
77
字号
#include "f2c.h"/* Subroutine */ int zlacgv_(integer *n, doublecomplex *x, integer *incx){/*  -- LAPACK auxiliary routine (version 2.0) --          Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,          Courant Institute, Argonne National Lab, and Rice University          October 31, 1992       Purpose       =======       ZLACGV conjugates a complex vector of length N.       Arguments       =========       N       (input) INTEGER               The length of the vector X.  N >= 0.       X       (input/output) COMPLEX*16 array, dimension                              (1+(N-1)*abs(INCX))               On entry, the vector of length N to be conjugated.               On exit, X is overwritten with conjg(X).       INCX    (input) INTEGER               The spacing between successive elements of X.      =====================================================================          Parameter adjustments          Function Body */    /* System generated locals */    integer i__1, i__2;    doublecomplex z__1;    /* Builtin functions */    void d_cnjg(doublecomplex *, doublecomplex *);    /* Local variables */    static integer ioff, i;#define X(I) x[(I)-1]    if (*incx == 1) {	i__1 = *n;	for (i = 1; i <= *n; ++i) {	    i__2 = i;	    d_cnjg(&z__1, &X(i));	    X(i).r = z__1.r, X(i).i = z__1.i;/* L10: */	}    } else {	ioff = 1;	if (*incx < 0) {	    ioff = 1 - (*n - 1) * *incx;	}	i__1 = *n;	for (i = 1; i <= *n; ++i) {	    i__2 = ioff;	    d_cnjg(&z__1, &X(ioff));	    X(ioff).r = z__1.r, X(ioff).i = z__1.i;	    ioff += *incx;/* L20: */	}    }    return 0;/*     End of ZLACGV */} /* zlacgv_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?