• Resolved mevabien22

    (@mevabien22)


    Hello,

    I want to obtain sines, cosines and tangents of angles, but I want the results to be in DEG and not in RAD as shown by default.

    For example in COS (35) I get -0.9036
    but I want to get COS (35) = 0.8191

    how can I do?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @mevabien22

    The COS operation requires as parameter an angle in radians. If you have the angle in degrees, you should to use the RADIANS operation to transform it to radians, as follows:

    
    COS(RADIANS(35))
    

    Best regards.

    Thread Starter mevabien22

    (@mevabien22)

    It worked perfect, thank you very much for the quick response

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘RAD to DEG’ is closed to new replies.