asum_fabs1_x0.c
来自「基于Blas CLapck的.用过的人知道是干啥的」· C语言 代码 · 共 11 行
C
11 行
#include "atlas_misc.h"#include "math.h"#define myabs fabsTYPE ATL_UASUM(const int N, const TYPE *X, const int incX){ int i; register TYPE t0=ATL_rzero; for (i=N; i; i--, X += incX) t0 += myabs(*X); return(t0);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?