1ZLACRM(1)           LAPACK auxiliary routine (version 3.1)           ZLACRM(1)
2
3
4

NAME

6       ZLACRM - a very simple matrix-matrix multiplication
7

SYNOPSIS

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

PURPOSE

18       ZLACRM performs a very simple matrix-matrix multiplication:
19                C := A * B,
20       where A is M by N and complex; B is N by N and real;
21       C is M by N and complex.
22
23

ARGUMENTS

25       M       (input) INTEGER
26               The  number  of rows of the matrix A and of the matrix C.  M >=
27               0.
28
29       N       (input) INTEGER
30               The number of columns and rows of the matrix B and  the  number
31               of columns of the matrix C.  N >= 0.
32
33       A       (input) COMPLEX*16 array, dimension (LDA, N)
34               A contains the M by N matrix A.
35
36       LDA     (input) INTEGER
37               The leading dimension of the array A. LDA >=max(1,M).
38
39       B       (input) DOUBLE PRECISION array, dimension (LDB, N)
40               B contains the N by N matrix B.
41
42       LDB     (input) INTEGER
43               The leading dimension of the array B. LDB >=max(1,N).
44
45       C       (input) COMPLEX*16 array, dimension (LDC, N)
46               C contains the M by N matrix C.
47
48       LDC     (input) INTEGER
49               The leading dimension of the array C. LDC >=max(1,N).
50
51       RWORK   (workspace) DOUBLE PRECISION array, dimension (2*M*N)
52
53
54
55 LAPACK auxiliary routine (versionNo3v.e1m)ber 2006                       ZLACRM(1)
Impressum