1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
SUBROUTINE SASQRTB( A, B, C )
*
* -- PBLAS auxiliary routine (version 2.0) --
* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
* and University of California, Berkeley.
* April 1, 1998
*
* .. Scalar Arguments ..
REAL A, B, C
* ..
*
* Purpose
* =======
*
* SASQRTB computes c := a * sqrt( b ) where a, b and c are scalars.
*
* Arguments
* =========
*
* A (input) REAL
* On entry, A specifies the scalar a.
*
* B (input) REAL
* On entry, B specifies the scalar b.
*
* C (output) REAL
* On entry, C specifies the scalar c. On exit, c is overwritten
* by the product of a and the square root of b.
*
* -- Written on April 1, 1998 by
* Antoine Petitet, University of Tennessee, Knoxville 37996, USA.
*
* =====================================================================
*
* .. Intrinsic Functions ..
INTRINSIC SQRT
* ..
* .. Executable Statements ..
*
C = A * SQRT( B )
*
RETURN
*
* End of SASQRTB
*
END
|