I wrote this line in a user defined function in the above LO version and got an error that a sub-function was not defined.
RADIUS = C/(2*SIN(RADIANS(dc/2)))
When I replaced it with:
RADIUS = C/(2*SIN((dc/2)*(pi()/180)))
My function works fine.
RADIANS() is mentioned in the “latest” help which is 24.8, but Ubuntu 24.04 is giving me 24.7. I can’t believe that RADIANS() is that new a function, so I’m confused. FOrtunately, my multiplying by pi()/180 works.
Anybody know what’s up withe the RADIANS() function?