status = acos ( arg1 ) ;
list arg1
list status 1 The STATUS variable is set to $ACKNOWLEDGE
list status
The STATUS variable is set to $ACKNOWLEDGE
%ARGUMENT : Invalid arguments. Usage: status = acos ( arg1 ) ;
None
To execute the example below, press or modify the example to try different variations. //acos & cos // cos (deg2rad(45)); float radians = (45 * ( 3.14 / 180)) ; put radians ; float cosine = cos radians ; put cosine; float degrees = ( radians * (180 / 3.14)); put degrees ; float arccosine = acos cosine; put ( arccosine * (180 / 3.14);