Coders out there - I suspect that's not more than 10 people worldwide:) - ,
I have a very, very simple question:
How can I compute sin, cos, tan or sqrt with a REAL?
a: REAL
b: REAL
...
b := a.power(2)
works, but ...
a: REAL
b: REAL
...
b := a.sin(2)
b := a.tan(2)
b := a.cos(2)
b := a.sqrt()
... does not.
Dear Internet, please don't let me down!
Paul:)