by Wolf Behrenhoff <NoSpamPleaseButThisIsValid3@[EMAIL PROTECTED]
>
Jun 21, 2007 at 12:14 AM
inscriptionalacon@[EMAIL PROTECTED]
wrote:
> Hello everybody !
>
> I would like to know what sort of approximation does Turbo Pascal when
> it saves a data with the real format.
TP's real type is a non-standard type. It has 48 bits (6 bytes). Why do
you want to use it or know something about it?
Better use single (4) or double (8 bytes). Look for IEEE 754 if you are
interested in the internal representation.
> Example : given a sequence of real u(n+1)=f(u(n)) what is the
> approximation done on u(n+1) ?
That looks like a successor function.
A successor function for reals... strange!
Wolf