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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
---
:name: dlasq5
:md5sum: 3d03f3e888c881f172d8092734679c9d
:category: :subroutine
:arguments:
- i0:
:type: integer
:intent: input
- n0:
:type: integer
:intent: input
- z:
:type: doublereal
:intent: input
:dims:
- 4*n0
- pp:
:type: integer
:intent: input
- tau:
:type: doublereal
:intent: input
- dmin:
:type: doublereal
:intent: output
- dmin1:
:type: doublereal
:intent: output
- dmin2:
:type: doublereal
:intent: output
- dn:
:type: doublereal
:intent: output
- dnm1:
:type: doublereal
:intent: output
- dnm2:
:type: doublereal
:intent: output
- ieee:
:type: logical
:intent: input
:substitutions: {}
:fortran_help: " SUBROUTINE DLASQ5( I0, N0, Z, PP, TAU, DMIN, DMIN1, DMIN2, DN, DNM1, DNM2, IEEE )\n\n\
* Purpose\n\
* =======\n\
*\n\
* DLASQ5 computes one dqds transform in ping-pong form, one\n\
* version for IEEE machines another for non IEEE machines.\n\
*\n\n\
* Arguments\n\
* =========\n\
*\n\
* I0 (input) INTEGER\n\
* First index.\n\
*\n\
* N0 (input) INTEGER\n\
* Last index.\n\
*\n\
* Z (input) DOUBLE PRECISION array, dimension ( 4*N )\n\
* Z holds the qd array. EMIN is stored in Z(4*N0) to avoid\n\
* an extra argument.\n\
*\n\
* PP (input) INTEGER\n\
* PP=0 for ping, PP=1 for pong.\n\
*\n\
* TAU (input) DOUBLE PRECISION\n\
* This is the shift.\n\
*\n\
* DMIN (output) DOUBLE PRECISION\n\
* Minimum value of d.\n\
*\n\
* DMIN1 (output) DOUBLE PRECISION\n\
* Minimum value of d, excluding D( N0 ).\n\
*\n\
* DMIN2 (output) DOUBLE PRECISION\n\
* Minimum value of d, excluding D( N0 ) and D( N0-1 ).\n\
*\n\
* DN (output) DOUBLE PRECISION\n\
* d(N0), the last value of d.\n\
*\n\
* DNM1 (output) DOUBLE PRECISION\n\
* d(N0-1).\n\
*\n\
* DNM2 (output) DOUBLE PRECISION\n\
* d(N0-2).\n\
*\n\
* IEEE (input) LOGICAL\n\
* Flag for IEEE or non IEEE arithmetic.\n\
*\n\n\
* =====================================================================\n\
*\n\
* .. Parameter ..\n DOUBLE PRECISION ZERO\n PARAMETER ( ZERO = 0.0D0 )\n\
* ..\n\
* .. Local Scalars ..\n INTEGER J4, J4P2\n DOUBLE PRECISION D, EMIN, TEMP\n\
* ..\n\
* .. Intrinsic Functions ..\n INTRINSIC MIN\n\
* ..\n"
|