1CLARCM(1) LAPACK auxiliary routine (version 3.2) CLARCM(1)
2
3
4
6 CLARCM - performs a very simple matrix-matrix multiplication
7
9 SUBROUTINE CLARCM( M, N, A, LDA, B, LDB, C, LDC, RWORK )
10
11 INTEGER LDA, LDB, LDC, M, N
12
13 REAL A( LDA, * ), RWORK( * )
14
15 COMPLEX B( LDB, * ), C( LDC, * )
16
18 CLARCM performs a very simple matrix-matrix multiplication:
19 C := A * B,
20 where A is M by M and real; B is M by N and complex;
21 C is M by N and complex.
22
24 M (input) INTEGER
25 The number of rows of the matrix A and of the matrix C. M >=
26 0.
27
28 N (input) INTEGER
29 The number of columns and rows of the matrix B and the number
30 of columns of the matrix C. N >= 0.
31
32 A (input) REAL array, dimension (LDA, M)
33 A contains the M by M matrix A.
34
35 LDA (input) INTEGER
36 The leading dimension of the array A. LDA >=max(1,M).
37
38 B (input) REAL array, dimension (LDB, N)
39 B contains the M by N matrix B.
40
41 LDB (input) INTEGER
42 The leading dimension of the array B. LDB >=max(1,M).
43
44 C (input) COMPLEX array, dimension (LDC, N)
45 C contains the M by N matrix C.
46
47 LDC (input) INTEGER
48 The leading dimension of the array C. LDC >=max(1,M).
49
50 RWORK (workspace) REAL array, dimension (2*M*N)
51
52
53
54 LAPACK auxiliary routine (versionNo3v.e2m)ber 2008 CLARCM(1)