Radian Angle

Top  Previous  Next

 

The trigonometrical operations of TrySim expect angles in radians or dispense these in this format.

 


90°

= Pi / 2

= 1.570796


180°

= Pi

= 3.1415926

 

If you have an angle in degree and need it in radian angle, program:


L

NumberDeg

// in Degree


L

180.0

// not 180 ! but 180.0


/R




L

3.1415926

// Pi


*R


// now you have the number in radian angle

 

If you have an angle in radian angle and need it in degree, program:


L

NumberDeg

// in radian in REAL format


L

3.1415926

// Pi


/R




L

180.0

// not 180 ! but 180.0


*R


// now you have the number in degree

 

SIN

COS

TAN

ASIN

ACOS

ATAN

 

REAL