The cos()
function in Dart returns the cosine of a number. To be more specific, cos()
returns the cosine of a number in radians.
The mathematical representation of the cos()
function is shown below.
dart:math
is required for this function.- The
cos()
function only works for right-angled triangles.
double cos(double num)
This function requires a number that represents an angle in radians as a parameter.
To convert degrees to radians, use the following formula:
radians = degrees * ( pi / 180 )
cos()
returns the cosine of the number (in radians) that is sent as a parameter.
import 'dart:convert';import 'dart:math';void main() {print("The value of cos(2.3): ${cos(2.3)}");print("The value of cos(-2.3): ${cos(-2.3)}");double result = cos(180.0 * (pi / 180.0));print("The value of cos(180.0 * (pi / 180.0)): ${result}");}
The first print()
shows the value of positive numbers (cos(2.3)
) in radians.
The second print()
shows the value of negative numbers (cos(-2.3)
) in radians.
The result
variable of type double
stores the converted degrees into radians and then applies cos()
on that value.
// degrees = 180.0
// PI = 3.14159265