1lis_vector_set_value(3f) Lis Library Functions lis_vector_set_value(3f)
2
3
4
6 lis_vector_set_value - assign the scalar value to the row of the vector
7
8
10 subroutine lis_vector_set_value(LIS_INTEGER flag, LIS_INTEGER i,
11 LIS_SCALAR value, LIS_VECTOR v, LIS_INTEGER ierr);
12
13
15 Assign the scalar value to the i-th row of the vector v.
16
17
19 flag
20
21 LIS_INS_VALUE
22 v[i] = value
23
24 LIS_ADD_VALUE
25 v[i] = v[i] + value
26
27
28 i The location where the value is assigned
29
30
31 value The scalar value to be assigned
32
33
34 v The destination vector
35
36
38 v The vector with the scalar value assigned to the i-th row
39
40
42 For the multiprocessing environment, the i-th row of the global vector
43 must be specified instead of the i-th row of the partial vector.
44
45
47 lis(3)
48
49 http://www.ssisc.org/lis/
50
51
52
53
54Man Page 6 Sep 2012 lis_vector_set_value(3f)