.TH "lacpy" 3 "Version 3.12.0" "LAPACK" \" -*- nroff -*- .ad l .nh .SH NAME lacpy \- lacpy: copy matrix .SH SYNOPSIS .br .PP .SS "Functions" .in +1c .ti -1c .RI "subroutine \fBclacpy\fP (uplo, m, n, a, lda, b, ldb)" .br .RI "\fBCLACPY\fP copies all or part of one two-dimensional array to another\&. " .ti -1c .RI "subroutine \fBdlacpy\fP (uplo, m, n, a, lda, b, ldb)" .br .RI "\fBDLACPY\fP copies all or part of one two-dimensional array to another\&. " .ti -1c .RI "subroutine \fBslacpy\fP (uplo, m, n, a, lda, b, ldb)" .br .RI "\fBSLACPY\fP copies all or part of one two-dimensional array to another\&. " .ti -1c .RI "subroutine \fBzlacpy\fP (uplo, m, n, a, lda, b, ldb)" .br .RI "\fBZLACPY\fP copies all or part of one two-dimensional array to another\&. " .in -1c .SH "Detailed Description" .PP .SH "Function Documentation" .PP .SS "subroutine clacpy (character uplo, integer m, integer n, complex, dimension( lda, * ) a, integer lda, complex, dimension( ldb, * ) b, integer ldb)" .PP \fBCLACPY\fP copies all or part of one two-dimensional array to another\&. .PP \fBPurpose:\fP .RS 4 .PP .nf CLACPY 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 COMPLEX array, dimension (LDA,N) The m by n matrix A\&. If UPLO = 'U', only the upper trapezium is accessed; if UPLO = 'L', only the lower trapezium 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 COMPLEX 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 .PP Definition at line \fB102\fP of file \fBclacpy\&.f\fP\&. .SS "subroutine dlacpy (character uplo, integer m, integer n, double precision, dimension( lda, * ) a, integer lda, double precision, dimension( ldb, * ) b, integer ldb)" .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 .PP Definition at line \fB102\fP of file \fBdlacpy\&.f\fP\&. .SS "subroutine slacpy (character uplo, integer m, integer n, real, dimension( lda, * ) a, integer lda, real, dimension( ldb, * ) b, integer ldb)" .PP \fBSLACPY\fP copies all or part of one two-dimensional array to another\&. .PP \fBPurpose:\fP .RS 4 .PP .nf SLACPY 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 REAL 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 REAL 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 .PP Definition at line \fB102\fP of file \fBslacpy\&.f\fP\&. .SS "subroutine zlacpy (character uplo, integer m, integer n, complex*16, dimension( lda, * ) a, integer lda, complex*16, dimension( ldb, * ) b, integer ldb)" .PP \fBZLACPY\fP copies all or part of one two-dimensional array to another\&. .PP \fBPurpose:\fP .RS 4 .PP .nf ZLACPY 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 COMPLEX*16 array, dimension (LDA,N) The m by n matrix A\&. If UPLO = 'U', only the upper trapezium is accessed; if UPLO = 'L', only the lower trapezium 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 COMPLEX*16 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 .PP Definition at line \fB102\fP of file \fBzlacpy\&.f\fP\&. .SH "Author" .PP Generated automatically by Doxygen for LAPACK from the source code\&.