学习BLAS库 -- ASUM

本文详细介绍了BLAS库中的ASUM函数,包括其在Fortran和C语言中的实现,以及如何计算向量元素绝对值的累加和。提供了源代码示例及测试结果。
摘要由CSDN通过智能技术生成

函数语法: 

   XASUM( N,  X, INCX)

功能

   ASUM 是 BLAS 中 第1层函数。ASUM函数计算一个向量中所有元素绝对值的累加和( Calculating summary of element absolute value of a vector).

参数

    输入值:
     int N,    the number of entries in the vector.
         X[*], the vector to be examined.
     int incX, the increment between successive entries of X.
                     incX must not be negative.

    返回值:
       the sum of the absolute values of X.

Fortran语言版DASUM

源代码

      DOUBLE PRECISION FUNCTION DASUM(N,DX,INCX)
*     .. Scalar Arguments ..
      INTEGER INCX,N
*     ..
*     .. Array Arguments ..
      DOUBLE PRECISION DX(*)
*     ..
*
*  Purpose
*  =======
*
*     takes the sum of the absolute values.
*     jack dongarra, linpack, 3/11/78.
*     modified 3/93 to return if incx .le. 0.
*     modified 12/3/93, array(1) declarations changed to array(*)
*
*
*     .. Local Scalars ..
      DOUBLE PRECISION DTEMP
      INTEGER I,M,MP1,NINCX
*     ..
*    
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值