I have exponents in the represented format of: "1.45e004" or "1.45e-04" or "-1.45e004".
[please note the minus sign in the third one]
Checking (==, !=, >, <, <=, >=, etc) does not work on exponents [incorrect or no results are returned] in their current format.
However, converting an exponent using fabs works for the first two, but not the last one, as fabs removes the minus sign (ergo making the value positive and not negative as it should be).
My questions are thus:
1) Is there a way to convert exponents into absolutes which would include signed values?
[fabs cannot do this]
OR
2) Is there a way [or function(s)] to compare one exponent to another (must be able to do ==, !=, >, <, >=, <=)?
OR
3) Is there a way to extract the two values from the exponent.
EG: "-1.45e-04" [Value1 = -1.45, Value2 = -4].
Answers for questions 1 and/or 2 are greatly preferred as 3 is a work around that may have issues with implementation (however, it's there in-case 1 and 2 don't have any suitable answers).
[Side-note: C++ methods can be used, although avoidance of stream is preferred ]
Thank you
int main(void)
{
//Not the actual program, but simple enough
char Arr[100];
double T1, T2;
sprintf(Arr,"-1.45e004");
T1 = atof(Arr);
printf("%f\n",fabs(T1)); //Fails to show the minus sign
return 0;
}
The overall goal can be achieved thus having any of the three questions answered:
Either: 1) Direct comparison (using a function) between the two exponents in the given format to see if they are the same, not the same, greater, less than (etc) for sorting of the greatest exponent to the least exponent (not contained in the program as how the sorting is implement is not relevant: only the checking needs to be resolved).
2) Indirect comparison, by converting it into another type that can be directly compared.
3) Direct comparison using an awkward work around by comparing the two numbers in the exponent separately.
[Background details]
The actual program spans 7 header files and 1 cpp, so I cannot display a particular segment given it's intertwined.
It task is thus: files downloaded from the ACE satellite are parsed as arguments, loaded into memory, converted into their appropriate types. The stored types are then sorted and prepared (current stage) to render a graph (not yet implemented).
At the moment, I am dealing with exponents (stored in the ACE satellite text files in the format given above). These exponents need to be scanned through to find the greatest exponent and the least exponent, so the graph can be correctly spaced between the two. After this, each exponent will be compared to see if it is greater (higher on the graph) or lesser than (lower on the graph) a given set of numbers.
For that task, I need comparisons between exponents. Given I'm inexperienced with them, I decided to ask here.
fabsdoes. Anyway, if you want to get help, I suggest you post some code and clearly explain what exactly in that code isn't working as you expect it to. – aix Apr 13 '11 at 9:25-1.45e-04is a floating-point number that is represented by a significant (or mantissa), in the example-1.45and an exponent, in the example-04. So, when you say you want to convert/compare the exponents do you really mean exponents, or do you actually mean the entire numbers? – Björn Pollex Apr 13 '11 at 9:47