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

NAME

6       CLACP2  -  all  or part of a real two-dimensional matrix A to a complex
7       matrix B
8

SYNOPSIS

10       SUBROUTINE CLACP2( UPLO, M, N, A, LDA, B, LDB )
11
12           CHARACTER      UPLO
13
14           INTEGER        LDA, LDB, M, N
15
16           REAL           A( LDA, * )
17
18           COMPLEX        B( LDB, * )
19

PURPOSE

21       CLACP2 copies all or part of a real two-dimensional matrix A to a  com‐
22       plex matrix B.
23
24

ARGUMENTS

26       UPLO    (input) CHARACTER*1
27               Specifies  the  part of the matrix A to be copied to B.  = 'U':
28               Upper triangular part
29               = 'L':      Lower triangular part
30               Otherwise:  All of the matrix A
31
32       M       (input) INTEGER
33               The number of rows of the matrix A.  M >= 0.
34
35       N       (input) INTEGER
36               The number of columns of the matrix A.  N >= 0.
37
38       A       (input) REAL array, dimension (LDA,N)
39               The m by n matrix A.  If UPLO = 'U', only the  upper  trapezium
40               is  accessed;  if  UPLO  =  'L',  only  the  lower trapezium is
41               accessed.
42
43       LDA     (input) INTEGER
44               The leading dimension of the array A.  LDA >= max(1,M).
45
46       B       (output) COMPLEX array, dimension (LDB,N)
47               On exit, B = A in the locations specified by UPLO.
48
49       LDB     (input) INTEGER
50               The leading dimension of the array B.  LDB >= max(1,M).
51
52
53
54 LAPACK auxiliary routine (versionNo3v.e1m)ber 2006                       CLACP2(1)
Impressum