Go to the source code of this file.
Functions | |
CplxDouble | _Infv (CplxDouble) |
bool | _Isinf (CplxDouble x) |
bool | _Isnan (CplxDouble x) |
CplxDouble | _Nanv (CplxDouble) |
|
Utilities for BAD DATA /////////////////////////////////////////////////////////////////////////////.
Definition at line 49 of file CplxTool.cpp. 00049 { 00050 return ( _Inf._D ); 00051 } |
|
Definition at line 53 of file CplxTool.cpp. 00053 { 00054 double temp = (double)x; 00055 return (_Dtest(&temp) == _INFCODE); 00056 } |
|
Definition at line 58 of file CplxTool.cpp. 00058 { 00059 double temp = (double)x; 00060 return (_Dtest(&temp) == _NANCODE); 00061 } |
|
Definition at line 63 of file CplxTool.cpp. 00063 { 00064 return (_Nan._D); 00065 } |