/usr/share/gnudatalanguage/coyote/fpufix.pro is in gdl-coyote 2016.11.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | ;+
; NAME:
; FPUFIX
;
; PURPOSE:
;
; This is a utility routine to examine a variable and fix problems
; that will create floating point underflow errors.
;
; AUTHOR:
;
; FANNING SOFTWARE CONSULTING
; David Fanning, Ph.D.
; 1645 Sheely Drive
; Fort Collins, CO 80526 USA
; Phone: 970-221-0438
; E-mail: david@idlcoyote.com
; Coyote's Guide to IDL Programming: http://www.idlcoyote.com
;
; CATEGORY:
;
; Utilities
;
; CALLING SEQUENCE:
;
; fixedData = FPUFIX(data)
;
; ARGUMENTS:
;
; data : A numerical variable to be checked for values that will cause
; floating point underflow errors. Suspect values are set to 0.
;
; KEYWORDS:
;
; None.
; RETURN VALUE:
;
; fixedData: The output is the same as the input, except that any values that
; will cause subsequent floating point underflow errors are set to 0.
;
; COMMON BLOCKS:
; None.
;
; EXAMPLES:
;
; data = FPTFIX(data)
;
; RESTRICTIONS:
;
; None.
;
; MODIFICATION HISTORY:
;
; Written by David W. Fanning, from Mati Meron's example FPU_FIX. Mati's
; program is more robust that this (ftp://cars3.uchicago.edu/midl/),
; but this serves my needs and doesn't require other programs from
; Mati's library. 24 February 2006.
;-
;******************************************************************************************;
; Copyright (c) 2008, by Fanning Software Consulting, Inc. ;
; All rights reserved. ;
; ;
; Redistribution and use in source and binary forms, with or without ;
; modification, are permitted provided that the following conditions are met: ;
; ;
; * Redistributions of source code must retain the above copyright ;
; notice, this list of conditions and the following disclaimer. ;
; * Redistributions in binary form must reproduce the above copyright ;
; notice, this list of conditions and the following disclaimer in the ;
; documentation and/or other materials provided with the distribution. ;
; * Neither the name of Fanning Software Consulting, Inc. nor the names of its ;
; contributors may be used to endorse or promote products derived from this ;
; software without specific prior written permission. ;
; ;
; THIS SOFTWARE IS PROVIDED BY FANNING SOFTWARE CONSULTING, INC. ''AS IS'' AND ANY ;
; EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ;
; OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT ;
; SHALL FANNING SOFTWARE CONSULTING, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, ;
; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED ;
; TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; ;
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ;
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ;
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;
;******************************************************************************************;
FUNCTION FPUFIX, data
; Return to caller on error after setting !Except.
On_Error, 2
Catch, theError
IF theError NE 0 THEN BEGIN
Catch, /Cancel
Message, !Error_State.Msg
IF N_Elements(except) THEN !EXCEPT = except
RETURN, data
ENDIF
; Only want to deal with numerical data types.
; Return all other kinds.
dataType = Size(data, /Type)
nogoodtypes = [0,7,8,10,11]
void = Where(nogoodTypes EQ dataType, count)
IF count GT 0 THEN RETURN, data
; Floating underflow error we are trying to fix.
fpu_error = 32
; Save current !EXCEPT. Don't report exceptions here.
except = !EXCEPT
!EXCEPT = 1
; Clear math error status.
void = Check_Math()
; Do something with the data that will cause floating underflow errors.
void = Min(data, /NAN)
; Check the math error status now.
check = Check_Math()
; If this is a floating underflow error, then fix it.
IF check EQ fpu_error THEN BEGIN
info = MaChar(DOUBLE=(dataType EQ 5 OR dataType EQ 9))
indices = Where(Abs(data) LT info.xmin, count)
IF count GT 0 THEN data[indices] = 0
ENDIF
; Clean up.
!EXCEPT = except
void = Check_Math()
; Return the repaired data.
RETURN, data
END
|