当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ valarray atan2()用法及代码示例


atan2()函数在valarray头文件中定义。此函数计算valarray中每个元素的(y /x)值的反正切,并返回一个valarray,其中包含所有元素的反正切。其中y是y坐标的比例,x是x坐标的比例。

用法:

std::valarray res = atan2 (y-coords, x-coords)

参数:该函数接受两个强制性参数,分别为X-coords和Y-coords。


注意:如果两个参数都是valarray对象,并且它们的大小不匹配,则它们的行为为undefined。

返回值:此函数返回一个valarray,其中包含所有元素的反正切。

以下示例程序旨在说明上述函数:

示例1:

// atan2 valarray example 
// programs illustrate the atan2() function: 
  
#include <iostream> 
#include <valarray> 
using namespace std; 
  
int main() 
{ 
    // intilaize both the array X and Y coords 
    double y[] = { 0.0, 3.0, -2.0 }; 
    double x[] = { -3.0, 3.0, -1.0 }; 
  
    // intilaize both the valarray X and Y coords 
    valarray<double> ycoords(y, 3); 
    valarray<double> xcoords(x, 3); 
  
    // store results in valarray res 
    valarray<double> res = atan2(ycoords, xcoords); 
  
    // print results of atan2() function 
    cout << "results:"; 
    for (size_t i = 0; i < res.size(); ++i) 
        cout << ' ' << res[i]; 
    cout << '\n'; 
  
    return 0; 
}

输出:

results: results: 3.14159 0.785398 -2.03444

示例2:

// atan2 valarray example 
// programs illustrate the atan2() function: 
  
#include <iostream> 
#include <valarray> 
using namespace std; 
  
int main() 
{ 
    // intilaize both the array X and Y coords 
    double y[] = { 4.0, 5.6, -2.8, 7.3 }; 
    double x[] = { 5.0, -1.5, 7.0, -0.8 }; 
  
    // intilaize both the valarray X and Y coords 
    valarray<double> ycoords(y, 4); 
    valarray<double> xcoords(x, 4); 
  
    // store results in valarray res 
    valarray<double> res = atan2(ycoords, xcoords); 
  
    // print results of atan2() function 
    cout << "results:"; 
    for (size_t i = 0; i < res.size(); ++i) 
        cout << ' ' << res[i]; 
    cout << '\n'; 
  
    return 0; 
}

输出:

results: 0.674741 1.83251 -0.380506 1.67995

示例3:错误和异常:当将大小不同的valarray对象作为参数传递时,该函数不返回任何匹配函数来调用错误。

// atan2 valarray example 
// programs illustrate the atan2() function: 
  
#include <iostream> 
#include <valarray> 
using namespace std; 
  
int main() 
{ 
    // intilaize both the array X and Y coords 
    double y[] = { -2.8, 7.3 }; 
    float x[] = { 5.0, -0.8, 3.2, 5, 1 }; 
  
    // intilaize both the valarray X and Y coords 
    valarray<double> ycoords(y, 2); 
    valarray<float> xcoords(x, 4); 
  
    // store results in valarray res 
    valarray<double> res = atan2(ycoords, xcoords); 
  
    // print results of atan2() function 
    cout << "results:"; 
    for (size_t i = 0; i < res.size(); ++i) 
        cout << ' ' << res[i]; 
    cout << '\n'; 
  
    return 0; 
}

输出:

prog.cpp: In function 'int main()':
prog.cpp:14:48: error: no matching function for call to 'atan2(std::valarray&, std::valarray&)'
   valarray res = atan2 (ycoords, xcoords);
                                                ^


相关用法


注:本文由纯净天空筛选整理自Rajput-Ji大神的英文原创作品 valarray atan2() function in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。