1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
.TH ZLARCM l "15 June 2000" "LAPACK version 3.0" ")"
.SH NAME
ZLARCM - perform a very simple matrix-matrix multiplication
.SH SYNOPSIS
.TP 19
SUBROUTINE ZLARCM(
M, N, A, LDA, B, LDB, C, LDC, RWORK )
.TP 19
.ti +4
INTEGER
LDA, LDB, LDC, M, N
.TP 19
.ti +4
DOUBLE
PRECISION A( LDA, * ), RWORK( * )
.TP 19
.ti +4
COMPLEX*16
B( LDB, * ), C( LDC, * )
.SH PURPOSE
ZLARCM performs a very simple matrix-matrix multiplication: C := A * B,
.br
where A is M by M and real; B is M by N and complex;
.br
C is M by N and complex.
.br
.SH ARGUMENTS
.TP 8
M (input) INTEGER
The number of rows of the matrix A and of the matrix C.
M >= 0.
.TP 8
N (input) INTEGER
The number of columns and rows of the matrix B and
the number of columns of the matrix C.
N >= 0.
.TP 8
A (input) DOUBLE PRECISION array, dimension (LDA, M)
A contains the M by M matrix A.
.TP 8
LDA (input) INTEGER
The leading dimension of the array A. LDA >=max(1,M).
.TP 8
B (input) DOUBLE PRECISION array, dimension (LDB, N)
B contains the M by N matrix B.
.TP 8
LDB (input) INTEGER
The leading dimension of the array B. LDB >=max(1,M).
.TP 8
C (input) COMPLEX*16 array, dimension (LDC, N)
C contains the M by N matrix C.
.TP 8
LDC (input) INTEGER
The leading dimension of the array C. LDC >=max(1,M).
.TP 8
RWORK (workspace) DOUBLE PRECISION array, dimension (2*M*N)
|