1ZLARCM(1)           LAPACK auxiliary routine (version 3.2)           ZLARCM(1)
2
3
4

NAME

6       ZLARCM - performs a very simple matrix-matrix multiplication
7

SYNOPSIS

9       SUBROUTINE ZLARCM( M, N, A, LDA, B, LDB, C, LDC, RWORK )
10
11           INTEGER        LDA, LDB, LDC, M, N
12
13           DOUBLE         PRECISION A( LDA, * ), RWORK( * )
14
15           COMPLEX*16     B( LDB, * ), C( LDC, * )
16

PURPOSE

18       ZLARCM 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

ARGUMENTS

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) DOUBLE PRECISION 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) DOUBLE PRECISION 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*16 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) DOUBLE PRECISION array, dimension (2*M*N)
51
52
53
54 LAPACK auxiliary routine (versionNo3v.e2m)ber 2008                       ZLARCM(1)
Impressum