User Tools

Site Tools


Sidebar

Home



G-Code


About

  Order of execution
  Parameters

G-Codes

M-Codes

Other Codes

O-Words

Comments

Functions

  abs[]
  acos[]
  active[]
  and[]
  asin[]
  atan2[]
  atan[]
  bin[]
  ceil[]
  chr[]
  cos[]
  datetime[]
  day[]
  dec[]
  defnz[]
  def[]
  deg2rad[]
  exists[]
  exp10[]
  exp2[]
  expr[][]
  exp[]
  e[]
  fix[]
  floor[]
  froms16[]
  froms32[]
  fromu16[]
  fromu32[]
  fup[]
  hex[]
  hour[]
  inc[]
  land[]
  lnand[]
  lnor[]
  lnot[]
  log10[]
  log2[]
  log[]
  lor[]
  lxnor[]
  lxor[]
  max3[]
  max[]
  millisec[]
  min3[]
  minute[]
  min[]
  mmtounit[]
  month[]
  nand[]
  nan[]
  nop[][]
  nor[]
  notexists[]
  not[]
  or[]
  pi[]
  pow[]
  rad2deg[]
  rand[]
  rounddec[]
  roundup[]
  round[]
  s16[]
  s32[]
  s8[]
  second[]
  shl[]
  shr[]
  sin[]
  sqrt[]
  sqr[]
  tan[]
  tomachine[]
  tos16[]
  tos32[]
  tou16[]
  tou32[]
  towork[]
  trunc[]
  u16[]
  u32[]
  u8[]
  unittomm[]
  xnor[]
  xor[]
  year[]

Operators

Macros

gcode:functions:func-atan

atan[]

Returns the arc tangent of number, expressed in degrees.

The atan[] function in math is a function that returns the arc tangent of a number. The arc tangent, or inverse tangent, of a number is the angle (in degrees) whose tangent is equal to the given number. The output of the function will be in the range of -90 to 90 (degrees). For example, atan[1] would return 45 and atan[0] would return 0.

The atan2[] function is also available and it return the angle whose tangent is y/x, using the signs of both arguments to determine the correct quadrant of the result.

Syntax

atan[x]

Parameters

x Number whose arc tangent is computed.
Return Value Principal arc tangent of x, in the interval [-90,90] degrees.
If the argument is out of interval, return value is NaN.

Examples

#<result> = atan[0]
(print,#<result>)

result: 0


#<result> = atan[1]
(print,#<result>)

result: 45

See also

gcode/functions/func-atan.txt · Last modified: 2023/01/26 12:18 by 127.0.0.1

Page Tools