×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Dave,
Something which has not been mentioned in the whole discussion:
When you use d_shift just to shift decimal positions, it is much safer
to multiply by .01 than to divide by 100.
For a multiplication the compiler can calculate exactly how many digits
and decimal positions are needed; with a division the number of decimal
positions can be infinite. So with a division the chances of a shortage
of positions is much higher, and then the decimal precision rules kick in.
Joep Beckeringh
Op 2-3-2020 om 21:19 schreef dlclark@xxxxxxxxxxxxxxxx:
Can anybody tell me why the following retains the decimal place in
the returned data:
t_number = packed_data / d_shift;
return %char(t_number);
...but this does not?
return %char(packed_data / d_shift);
Sincerely,
Dave Clark
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.