Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Atn() and Cos() Function in MS Access

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Atn() Function :

In MS Access, The Atn() function returns the arctangent of a number. It takes a number as a parameter and it will return the arc tangent of that number. It will help to perform the mathematical operation of trigonometry.

Syntax :

Atn(number)

Example1 –

SELECT Atn(50) AS AtnNum;

Output –

AtnNum
1.55079899282175

Example2 –

SELECT Atn(2) AS AtnNum;

Output –

AtnNum
1.10714871779409 

Cos() Function :

In MS Access, the cos() function returns the cosine of an angle. In this function, we will pass an angle as a parameter and it will return the cosine of that angle. It will also help perform the trigonometry mathematical operation.

Syntax :

Cos(number)

Example1 –

SELECT Cos(45) AS CosNum;

Output –

CosNum
0.52532198881773

Example2 –

SELECT Cos(30) AS CosNum;

Output –

CosNum
0.154251449887584
My Personal Notes arrow_drop_up
Last Updated : 29 Oct, 2020
Like Article
Save Article
Similar Reads