1lis_array_matmat_ns(3f) Lis Library Functions lis_array_matmat_ns(3f)
2
3
4
6 lis_array_matmat_ns - calculate the matrix-matrix product
7
8
10 subroutine lis_array_matmat_ns(LIS_INTEGER l, LIS_INTEGER m, LIS_INTE‐
11 GER n, LIS_SCALAR a(), LIS_INTEGER lda, LIS_SCALAR b(), LIS_INTEGER
12 ldb, LIS_SCALAR c(), LIS_INTEGER ldc, LIS_INTEGER op, LIS_INTEGER
13 ierr);
14
15
17 Calculate the matrix-matrix product AB, where matrices A and B are not
18 square.
19
20
22 l, m, n
23 The sizes of the matrices
24
25
26 a The array that stores matrix A of size l * m
27
28
29 lda The size of the leading dimension of array A
30
31
32 b The array that stores matrix B of size m * n
33
34
35 ldb The size of the leading dimension of array B
36
37
38 c The array that stores matrix C of size l * n
39
40
41 ldc The size of the leading dimension of array C
42
43
44 op
45
46 LIS_INS_VALUE
47 C = AB
48
49 LIS_SUB_VALUE
50 C = C - AB
51
52
54 C
55
56
58 lis(3)
59
60 http://www.ssisc.org/lis/
61
62
63
64
65Man Page 10 Oct 2016 lis_array_matmat_ns(3f)