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

NAME

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

SYNOPSIS

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

PURPOSE

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

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) COMPLEX array, dimension (LDA, N)
33               A contains the M by N 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 N by N matrix B.
40
41       LDB     (input) INTEGER
42               The leading dimension of the array B. LDB >=max(1,N).
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,N).
49
50       RWORK   (workspace) REAL array, dimension (2*M*N)
51
52
53
54 LAPACK auxiliary routine (versionNo3v.e2m)ber 2008                       CLACRM(1)
Impressum