proj()函数是内置函数,在复杂头文件中定义。此函数用于查找复数的投影进入黎曼球面
句法:
template complex
proj (const complex& z);
范围:
- z:该方法采用代表复数的mandaory参数z 。
返回值:该函数将复数z的投影返回到Riemann球面上。
下面的程序说明了C++中的proj()函数:
范例1:
// C++ program to demonstrate
// example of proj() function
#include
using namespace std;
int main()
{
// defines the complex number: (2 + 2i)
complex complexnumber(2, 2);
cout << "proj" << complexnumber << " = "
<< proj(complexnumber) << endl;
return 0;
}
输出:
proj(2,2) = (2,2)
范例2:
// C++ program to demonstrate
// example of proj() function.
#include
using namespace std;
int main()
{
complex complexnumber(INFINITY, -2);
cout << "proj" << complexnumber << " = "
<< proj(complexnumber) << endl;
return 0;
}
输出:
proj(inf,-2) = (inf,-0)
范例3:
// C++ program to demonstrate
// example of proj() function.
#include
using namespace std;
int main()
{
complex complexnumber(2, -INFINITY);
cout << "proj" << complexnumber << " = "
<< proj(complexnumber) << endl;
return 0;
}
输出:
proj(2,-inf) = (inf,-0)
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。