Home
last modified time | relevance | path

Searched refs:atan2 (Results 1 – 22 of 22) sorted by relevance

/AliOS-Things-master/components/py_engine/engine/py/
A Dmodcmath.c37 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 Dmodmath.c154 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 Dobjcomplex.c245 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 De_atan2.c122 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 Dcompass.md196 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 Dmath2.py45 def atan2(y, x): function
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/
A Datan2.c46 double atan2(double y, double x) in atan2() function
/AliOS-Things-master/components/py_engine/tests/float/
A Dmath_domain.py43 ("atan2", math.atan2, ((0, 0), (-inf, inf), (-inf, -inf), (inf, -inf))),
A Dmath_fun.py66 ("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 Ddrv_mag_qst_qmc5883l.c196 int heading = 180.0 * atan2(x_fit, y_fit) / M_PI; in qmc5883l_readHeading()
A Ddrv_mag_qst_qmc6310.c270 int heading = 180.0 * atan2(x_fit, y_fit) / M_PI; in qmc6310_readHeading()
/AliOS-Things-master/components/amp/modules/
A Dqlc5883.js329 var heading = 180.0 * Math.atan2(x_fit, y_fit) / M_PI;
/AliOS-Things-master/components/py_engine/framework/
A Dqmc5883.py299 heading = 180.0 * math.atan2(x_fit, y_fit) / M_PI;
/AliOS-Things-master/solutions/javascript_demo/agriculture_demo/
A Dgps.js787 var head = Math.atan2(y, x) * 180 / Math.PI;
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/
A Dtest_bignum.js199 assert(BigFloat.atan2(7.1l, -5.1l) === 2.1937053809751415549388104628759813l);
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dqjscalc.js819 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 Dquickjs.c41222 JS_CFUNC_SPECIAL_DEF("atan2", 2, f_f_f, atan2),
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_stdlib.c58 return atan2(x, y); in SDL_atan2()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/
A Dtif_luv.c858 * atan2((v)-V_NEU,(u)-U_NEU) + .5*NANGLES )
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/
A Dduk_config.h2400 #define DUK_ATAN2 atan2
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/doc/
A Djsbignum.texi263 @item atan2(x, y[, e])
/AliOS-Things-master/components/SDL2/
A DCMakeLists.txt771 acos acosf asin asinf atan atanf atan2 atan2f ceil ceilf
829 atan atan2 atanf atan2f ceil ceilf copysign copysignf cos cosf

Completed in 126 milliseconds