ESBArcTanDeg2 Function |
Unit
QESBPCSMath
Declaration
Function ESBArcTanDeg2(const X: Extended): Extended;
Description
Return Values are between -90 and 90.
Parameters |
X | First Float to process |
Y | Second Float to process |
Category
Arithmetic Routines for FloatsImplementation
function ESBArcTanDeg2 (const X: Extended): Extended; begin Result := Rad2Deg (ArcTan (X)); End; |
|