From e1d39294aee16fa6db9ba079b14442358217db71 Mon Sep 17 00:00:00 2001 From: julie Date: Thu, 6 Oct 2011 06:53:11 +0000 Subject: Integrating Doxygen in comments --- SRC/zlapmt.f | 136 ++++++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 97 insertions(+), 39 deletions(-) (limited to 'SRC/zlapmt.f') diff --git a/SRC/zlapmt.f b/SRC/zlapmt.f index b3c07b49..5d93064f 100644 --- a/SRC/zlapmt.f +++ b/SRC/zlapmt.f @@ -1,9 +1,105 @@ +*> \brief \b ZLAPMT +* +* =========== DOCUMENTATION =========== +* +* Online html documentation available at +* http://www.netlib.org/lapack/explore-html/ +* +* Definition +* ========== +* +* SUBROUTINE ZLAPMT( FORWRD, M, N, X, LDX, K ) +* +* .. Scalar Arguments .. +* LOGICAL FORWRD +* INTEGER LDX, M, N +* .. +* .. Array Arguments .. +* INTEGER K( * ) +* COMPLEX*16 X( LDX, * ) +* .. +* +* Purpose +* ======= +* +*>\details \b Purpose: +*>\verbatim +*> +*> ZLAPMT rearranges the columns of the M by N matrix X as specified +*> by the permutation K(1),K(2),...,K(N) of the integers 1,...,N. +*> If FORWRD = .TRUE., forward permutation: +*> +*> X(*,K(J)) is moved X(*,J) for J = 1,2,...,N. +*> +*> If FORWRD = .FALSE., backward permutation: +*> +*> X(*,J) is moved to X(*,K(J)) for J = 1,2,...,N. +*> +*>\endverbatim +* +* Arguments +* ========= +* +*> \param[in] FORWRD +*> \verbatim +*> FORWRD is LOGICAL +*> = .TRUE., forward permutation +*> = .FALSE., backward permutation +*> \endverbatim +*> +*> \param[in] M +*> \verbatim +*> M is INTEGER +*> The number of rows of the matrix X. M >= 0. +*> \endverbatim +*> +*> \param[in] N +*> \verbatim +*> N is INTEGER +*> The number of columns of the matrix X. N >= 0. +*> \endverbatim +*> +*> \param[in,out] X +*> \verbatim +*> X is COMPLEX*16 array, dimension (LDX,N) +*> On entry, the M by N matrix X. +*> On exit, X contains the permuted matrix X. +*> \endverbatim +*> +*> \param[in] LDX +*> \verbatim +*> LDX is INTEGER +*> The leading dimension of the array X, LDX >= MAX(1,M). +*> \endverbatim +*> +*> \param[in,out] K +*> \verbatim +*> K is INTEGER array, dimension (N) +*> On entry, K contains the permutation vector. K is used as +*> internal workspace, but reset to its original value on +*> output. +*> \endverbatim +*> +* +* Authors +* ======= +* +*> \author Univ. of Tennessee +*> \author Univ. of California Berkeley +*> \author Univ. of Colorado Denver +*> \author NAG Ltd. +* +*> \date November 2011 +* +*> \ingroup complex16OTHERauxiliary +* +* ===================================================================== SUBROUTINE ZLAPMT( FORWRD, M, N, X, LDX, K ) * * -- LAPACK auxiliary routine (version 3.2) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- -* November 2006 +* November 2011 * * .. Scalar Arguments .. LOGICAL FORWRD @@ -14,44 +110,6 @@ COMPLEX*16 X( LDX, * ) * .. * -* Purpose -* ======= -* -* ZLAPMT rearranges the columns of the M by N matrix X as specified -* by the permutation K(1),K(2),...,K(N) of the integers 1,...,N. -* If FORWRD = .TRUE., forward permutation: -* -* X(*,K(J)) is moved X(*,J) for J = 1,2,...,N. -* -* If FORWRD = .FALSE., backward permutation: -* -* X(*,J) is moved to X(*,K(J)) for J = 1,2,...,N. -* -* Arguments -* ========= -* -* FORWRD (input) LOGICAL -* = .TRUE., forward permutation -* = .FALSE., backward permutation -* -* M (input) INTEGER -* The number of rows of the matrix X. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix X. N >= 0. -* -* X (input/output) COMPLEX*16 array, dimension (LDX,N) -* On entry, the M by N matrix X. -* On exit, X contains the permuted matrix X. -* -* LDX (input) INTEGER -* The leading dimension of the array X, LDX >= MAX(1,M). -* -* K (input/output) INTEGER array, dimension (N) -* On entry, K contains the permutation vector. K is used as -* internal workspace, but reset to its original value on -* output. -* * ===================================================================== * * .. Local Scalars .. -- cgit v1.2.3