在复数头文件中定义了用于复数的tan()函数,此函数是tan()函数的复数版本。此函数用于计算复数z的复数tan。此函数返回复数z的tan。
用法:
tan(z);
参数:
- z:该方法采用代表复数的mandaory参数z。
返回值:此函数返回复数z的tan()。
以下示例程序旨在说明C++中的tan()函数:
计划1:-
// C++ program to demonstrate
// example of tan() function.
#include <iostream>
#include <complex>
using namespace std;
int main ()
{
complex<double> complexnumber (0.0, 1.0);
// use of tan() function for complex number
cout << "The tan of " << complexnumber << " is "
<< tan(complexnumber) <<endl;
return 0;
}
输出:
The tan of (0,1) is (0,0.761594)
计划2:-
// C++ program to demonstrate
// example of tan() function.
#include <iostream>
#include <complex>
using namespace std;
int main ()
{
complex<double> complexnumber (1.0, 0.0);
// use of tan() function for complex number
cout << "The tan of " << complexnumber << " is "
<< tan(complexnumber) << endl;
return 0;
}
输出:
The tan of (1,0) is (1.55741,0)
相关用法
- C++ complex pow()用法及代码示例
- C++ complex exp()用法及代码示例
- C++ complex arg()用法及代码示例
- C++ complex cos()用法及代码示例
- C++ complex log()用法及代码示例
- C++ complex sqrt()用法及代码示例
- C++ complex cosh()用法及代码示例
- C++ complex polar()用法及代码示例
- C++ complex asin()用法及代码示例
- C++ complex atan()用法及代码示例
- C++ complex log10()用法及代码示例
- C++ complex sinh()用法及代码示例
- C++ complex asinh()用法及代码示例
- C++ complex acosh()用法及代码示例
- C++ complex atanh()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 tan() function for complex number in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。