1lis_array_axpy(3) Lis Library Functions lis_array_axpy(3)
2
3
4
6 lis_array_axpy - calculate the sum of the vectors
7
8
10 #include "lis.h"
11
12 LIS_INT lis_array_axpy(LIS_INT n, LIS_SCALAR alpha, LIS_SCALAR x[],
13 LIS_SCALAR y[]);
14
15
17 Calculate the sum of the vectors y = alpha * x + y.
18
19
21 n The size of the vectors
22
23
24 alpha The scalar value
25
26
27 x, y The arrays that store the vectors
28
29
31 y alpha * x + y (vector y is overwritten)
32
33
35 The following exit values are returned:
36
37 0 The process is normally terminated
38
39 unspecified
40 An error occurred
41
42
44 lis(3)
45
46 http://www.ssisc.org/lis/
47
48
49
50
51Man Page 3 Dec 2014 lis_array_axpy(3)