/AliOS-Things-master/components/py_engine/engine/py/ |
A D | modcmath.c | 37 return mp_obj_new_float(MICROPY_FLOAT_C_FUN(atan2)(imag, real)); in mp_cmath_phase() 47 mp_obj_new_float(MICROPY_FLOAT_C_FUN(atan2)(imag, real)), in mp_cmath_polar() 75 ….5) * MICROPY_FLOAT_C_FUN(log)(real * real + imag * imag), MICROPY_FLOAT_C_FUN(atan2)(imag, real)); in mp_cmath_log() 84 … + imag * imag), MICROPY_FLOAT_CONST(0.4342944819032518) * MICROPY_FLOAT_C_FUN(atan2)(imag, real)); in mp_cmath_log10() 94 mp_float_t theta = MICROPY_FLOAT_CONST(0.5) * MICROPY_FLOAT_C_FUN(atan2)(imag, real); in mp_cmath_sqrt()
|
A D | modmath.c | 154 return atan2(x, y); in MATH_FUN_2() 156 MATH_FUN_2(atan2, atan2_func) in MATH_FUN_2() argument 158 MATH_FUN_2(atan2, atan2) in MATH_FUN_2()
|
A D | objcomplex.c | 245 mp_float_t arg1 = MICROPY_FLOAT_C_FUN(atan2)(lhs_imag, lhs_real); in mp_obj_complex_binary_op()
|
/AliOS-Things-master/components/SDL2/src/libm/ |
A D | e_atan2.c | 122 double atan2(double y, double x) in atan2() function 132 strong_alias(__ieee754_atan2, atan2) 134 libm_hidden_def(atan2)
|
/AliOS-Things-master/solutions/eduk1_demo/k1_apps/compass/ |
A D | compass.md | 196 atan2(x_fit, y_fit) * 180.0 / M_PI; 197 // atan2(x, y) 返回以弧度表示的 y/x 的反正切 238 由于我们使用 atan2 方法将 X Y 轴数据映射到极坐标系上,如果我们想得到精准的映射,我们需要保证圆心处于(0,0)位置。然而,这两张图可以看出,圆心都偏离了(0,0)。因此我们首先需要找到圆… 282 int heading = 180.0 * atan2(x_fit, y_fit) / M_PI;
|
/AliOS-Things-master/components/amp-utility/python/ |
A D | math2.py | 45 def atan2(y, x): function
|
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | atan2.c | 46 double atan2(double y, double x) in atan2() function
|
/AliOS-Things-master/components/py_engine/tests/float/ |
A D | math_domain.py | 43 ("atan2", math.atan2, ((0, 0), (-inf, inf), (-inf, -inf), (inf, -inf))),
|
A D | math_fun.py | 66 ("atan2", atan2, ((1.0, 0.0), (0.0, 1.0), (2.0, 0.5), (-3.0, 5.0), (-3.0, -4.0))),
|
/AliOS-Things-master/hardware/board/haaseduk1/drivers/sensor/ |
A D | drv_mag_qst_qmc5883l.c | 196 int heading = 180.0 * atan2(x_fit, y_fit) / M_PI; in qmc5883l_readHeading()
|
A D | drv_mag_qst_qmc6310.c | 270 int heading = 180.0 * atan2(x_fit, y_fit) / M_PI; in qmc6310_readHeading()
|
/AliOS-Things-master/components/amp/modules/ |
A D | qlc5883.js | 329 var heading = 180.0 * Math.atan2(x_fit, y_fit) / M_PI;
|
/AliOS-Things-master/components/py_engine/framework/ |
A D | qmc5883.py | 299 heading = 180.0 * math.atan2(x_fit, y_fit) / M_PI;
|
/AliOS-Things-master/solutions/javascript_demo/agriculture_demo/ |
A D | gps.js | 787 var head = Math.atan2(y, x) * 180 / Math.PI;
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/ |
A D | test_bignum.js | 199 assert(BigFloat.atan2(7.1l, -5.1l) === 2.1937053809751415549388104628759813l);
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | qjscalc.js | 819 return Float.atan2(this.im, this.re); 826 return Complex(abs(this).log(), atan2(this.im, this.re)); 2567 function atan2(a, b) function 2569 return Float.atan2(Float(a), Float(b));
|
A D | quickjs.c | 41222 JS_CFUNC_SPECIAL_DEF("atan2", 2, f_f_f, atan2),
|
/AliOS-Things-master/components/SDL2/src/stdlib/ |
A D | SDL_stdlib.c | 58 return atan2(x, y); in SDL_atan2()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_luv.c | 858 * atan2((v)-V_NEU,(u)-U_NEU) + .5*NANGLES )
|
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/ |
A D | duk_config.h | 2400 #define DUK_ATAN2 atan2
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/doc/ |
A D | jsbignum.texi | 263 @item atan2(x, y[, e])
|
/AliOS-Things-master/components/SDL2/ |
A D | CMakeLists.txt | 771 acos acosf asin asinf atan atanf atan2 atan2f ceil ceilf 829 atan atan2 atanf atan2f ceil ceilf copysign copysignf cos cosf
|