C++中tan、atan、sin、cos等三角函数用法的代码演示及结果,注意角度和弧度的转换!

进行相机坐标系相关公式推导时,经常碰到三角函数的使用。时间一长就生疏,碰到问题再查,很费时间。所以就总结一下,也希望能帮到更多的人。下面就通过简练的代码,把常用的cos、sin、tan、atan等通过代码及结果都说清楚。
注意弧度和角度的区别!!!

1、代码

#include 
#include 
 
using namespace std;
#define PI 3.1415926
 
int main()
{
     
	//注意tan、atan等函数不能接受整数,tan(45)会报错“error C2668: 'tan' : ambiguous call to overloaded function”
	float tanValue1 = tan(45.0f);   
	float tanValue2 = tan(45*PI/180.0f);
	cout<<"tan(45) = "<<tanValue1<<endl;
	cout<<"tan(45*PI/180) = "<<tanValue2<<endl;
	cout<<"可以看出:tan函数输入的是弧度! 如果想对角度进行tan运算,需要乘以(PI/180)把角度转为弧度。"<<endl<<endl;
 
	float atanValue1 = atan(1.0f);  
	float atanValue2 = atan(1.0f)*180.0f/PI; 
	cout<<"atan(1) = "<<atanValue1<<endl;
	cout<<"(atan(1.0))*180/PI = "<<atanValue2<<endl;
	cout<<"可以看出:atan函数输出的是弧度! 如果想进行atan运算得到角度,需要乘以(180/PI)把弧度转为角度"<<endl<<endl;
 
	cin.get();
	return 0;
}

2、输出结果
C++中tan、atan、sin、cos等三角函数用法的代码演示及结果,注意角度和弧度的转换!_第1张图片
3、结论

C++中sin、cos、tan、asin、acos、atan等三角函数的输入是弧度,而不是角度。

如果想对角度进行这些三角函数运算,需要乘以(PI/180)把角度转为弧度。

你可能感兴趣的:(#,C++)