该函数用于计算以弧度表示的角度的余弦值。
用法
考虑弧度 'x'。语法是:
float cos(float x);
float cos(double x);
float cos(long double x);
double cos(integral x);
注意:如果传递的值是整数类型,则将其强制转换为 double。
参数
x: 以弧度表示的值。
返回值
它返回 [-1,1] 范围内的角度的余弦值。
例子1
当 x 的值为正时,让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double degree=60;
double d=60*3.14/180;
cout<<"Cosine of an angle is:"<<cos(d);
return 0;
}
输出:
Cosine of an angle is:0.50046
在本例中,cos() 函数计算角度等于 60 时的余弦值。
例子2
当 x 的值为负时,让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double degree= -90;
double radian=degree*3.14/180;
cout<<"Cosine of an angle is:"<<cos(radian);
return 0;
}
输出:
Cosine of an angle is:0.000796327
在本例中,cos() 函数在值为负时求角度的余弦,但它与 cos(-x) =cos(x) 保持相同。
相关用法
- C++ Math cosh()用法及代码示例
- C++ Math copysign()用法及代码示例
- C++ Math ceil()用法及代码示例
- C++ Math cbrt()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math cos()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。