diff options
Diffstat (limited to 'CBLAS/src/icamaxsub.f')
-rw-r--r-- | CBLAS/src/icamaxsub.f | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/CBLAS/src/icamaxsub.f b/CBLAS/src/icamaxsub.f new file mode 100644 index 00000000..3f47071e --- /dev/null +++ b/CBLAS/src/icamaxsub.f @@ -0,0 +1,15 @@ +c icamaxsub.f +c +c The program is a fortran wrapper for icamax. +c Witten by Keita Teranishi. 2/11/1998 +c + subroutine icamaxsub(n,x,incx,iamax) +c + external icamax + integer icamax,iamax + integer n,incx + complex x(*) +c + iamax=icamax(n,x,incx) + return + end |