.TH "dlacpy.f" 3 "Wed Oct 15 2014" "Version 3.4.2" "LAPACK" \" -*- nroff -*- .ad l .nh .SH NAME dlacpy.f \- .SH SYNOPSIS .br .PP .SS "Functions/Subroutines" .in +1c .ti -1c .RI "subroutine \fBdlacpy\fP (UPLO, M, N, A, LDA, B, LDB)" .br .RI "\fI\fBDLACPY\fP copies all or part of one two-dimensional array to another\&. \fP" .in -1c .SH "Function/Subroutine Documentation" .PP .SS "subroutine dlacpy (characterUPLO, integerM, integerN, double precision, dimension( lda, * )A, integerLDA, double precision, dimension( ldb, * )B, integerLDB)" .PP \fBDLACPY\fP copies all or part of one two-dimensional array to another\&. .PP \fBPurpose: \fP .RS 4 .PP .nf DLACPY copies all or part of a two-dimensional matrix A to another matrix B. .fi .PP .RE .PP \fBParameters:\fP .RS 4 \fIUPLO\fP .PP .nf UPLO is CHARACTER*1 Specifies the part of the matrix A to be copied to B. = 'U': Upper triangular part = 'L': Lower triangular part Otherwise: All of the matrix A .fi .PP .br \fIM\fP .PP .nf M is INTEGER The number of rows of the matrix A. M >= 0. .fi .PP .br \fIN\fP .PP .nf N is INTEGER The number of columns of the matrix A. N >= 0. .fi .PP .br \fIA\fP .PP .nf A is DOUBLE PRECISION array, dimension (LDA,N) The m by n matrix A. If UPLO = 'U', only the upper triangle or trapezoid is accessed; if UPLO = 'L', only the lower triangle or trapezoid is accessed. .fi .PP .br \fILDA\fP .PP .nf LDA is INTEGER The leading dimension of the array A. LDA >= max(1,M). .fi .PP .br \fIB\fP .PP .nf B is DOUBLE PRECISION array, dimension (LDB,N) On exit, B = A in the locations specified by UPLO. .fi .PP .br \fILDB\fP .PP .nf LDB is INTEGER The leading dimension of the array B. LDB >= max(1,M). .fi .PP .RE .PP \fBAuthor:\fP .RS 4 Univ\&. of Tennessee .PP Univ\&. of California Berkeley .PP Univ\&. of Colorado Denver .PP NAG Ltd\&. .RE .PP \fBDate:\fP .RS 4 September 2012 .RE .PP .PP Definition at line 104 of file dlacpy\&.f\&. .SH "Author" .PP Generated automatically by Doxygen for LAPACK from the source code\&.