This is mostly a long term maintenance improvement.
Many coding styles require elimination of trailing whitespace, and
many editors and source code management configurations automatically
gobble up whitespace. When these tools gobble up whitespace, it
complicates reviewing the meaningful code changes.
By removing whitespace on one patch, it makes future
code reviews much easier.
=SCRIPT====================================================================
if which tempfile &>/dev/null; then
TEMPMAKER=tempfile
elif which mktemp &>/dev/null; then
TEMPMAKER=mktemp
else
echo "Cannot find tempfile program." 2>&1
exit 1
fi
MYTEMP=$($TEMPMAKER)
trap 'rm -f $MYTEMP' SIGINT SIGTERM
stripit() {
echo "stripping $1"
sed 's/[ \t]*$//' "$1" > $MYTEMP
cp $MYTEMP "$1"
}
if [ $# -gt 0 ]; then
while [ "$1" != "" ]; do
stripit $1
shift
done
else
while read -t 2; do
stripit $REPLY
done
fi
rm $MYTEMP
=================================================
95 lines
2.0 KiB
FortranFixed
95 lines
2.0 KiB
FortranFixed
*> \brief \b CSSCAL
|
|
*
|
|
* =========== DOCUMENTATION ===========
|
|
*
|
|
* Online html documentation available at
|
|
* http://www.netlib.org/lapack/explore-html/
|
|
*
|
|
* Definition:
|
|
* ===========
|
|
*
|
|
* SUBROUTINE CSSCAL(N,SA,CX,INCX)
|
|
*
|
|
* .. Scalar Arguments ..
|
|
* REAL SA
|
|
* INTEGER INCX,N
|
|
* ..
|
|
* .. Array Arguments ..
|
|
* COMPLEX CX(*)
|
|
* ..
|
|
*
|
|
*
|
|
*> \par Purpose:
|
|
* =============
|
|
*>
|
|
*> \verbatim
|
|
*>
|
|
*> CSSCAL scales a complex vector by a real constant.
|
|
*> \endverbatim
|
|
*
|
|
* Authors:
|
|
* ========
|
|
*
|
|
*> \author Univ. of Tennessee
|
|
*> \author Univ. of California Berkeley
|
|
*> \author Univ. of Colorado Denver
|
|
*> \author NAG Ltd.
|
|
*
|
|
*> \date November 2011
|
|
*
|
|
*> \ingroup complex_blas_level1
|
|
*
|
|
*> \par Further Details:
|
|
* =====================
|
|
*>
|
|
*> \verbatim
|
|
*>
|
|
*> jack dongarra, linpack, 3/11/78.
|
|
*> modified 3/93 to return if incx .le. 0.
|
|
*> modified 12/3/93, array(1) declarations changed to array(*)
|
|
*> \endverbatim
|
|
*>
|
|
* =====================================================================
|
|
SUBROUTINE CSSCAL(N,SA,CX,INCX)
|
|
*
|
|
* -- Reference BLAS level1 routine (version 3.4.0) --
|
|
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
|
|
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
|
|
* November 2011
|
|
*
|
|
* .. Scalar Arguments ..
|
|
REAL SA
|
|
INTEGER INCX,N
|
|
* ..
|
|
* .. Array Arguments ..
|
|
COMPLEX CX(*)
|
|
* ..
|
|
*
|
|
* =====================================================================
|
|
*
|
|
* .. Local Scalars ..
|
|
INTEGER I,NINCX
|
|
* ..
|
|
* .. Intrinsic Functions ..
|
|
INTRINSIC AIMAG,CMPLX,REAL
|
|
* ..
|
|
IF (N.LE.0 .OR. INCX.LE.0) RETURN
|
|
IF (INCX.EQ.1) THEN
|
|
*
|
|
* code for increment equal to 1
|
|
*
|
|
DO I = 1,N
|
|
CX(I) = CMPLX(SA*REAL(CX(I)),SA*AIMAG(CX(I)))
|
|
END DO
|
|
ELSE
|
|
*
|
|
* code for increment not equal to 1
|
|
*
|
|
NINCX = N*INCX
|
|
DO I = 1,NINCX,INCX
|
|
CX(I) = CMPLX(SA*REAL(CX(I)),SA*AIMAG(CX(I)))
|
|
END DO
|
|
END IF
|
|
RETURN
|
|
END
|