HomeSort by relevance Sort by last modified time
    Searched full:polar (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/src/math/cmplx/
polar.go 7 // Polar returns the absolute value r and phase ? of x,
10 func Polar(x complex128) (r, ? float64) {
rect.go 9 // Rect returns the complex number x with polar coordinates r, ?.
example_test.go 25 r, theta := cmplx.Polar(2i)
  /prebuilts/go/linux-x86/src/math/cmplx/
polar.go 7 // Polar returns the absolute value r and phase ? of x,
10 func Polar(x complex128) (r, ? float64) {
rect.go 9 // Rect returns the complex number x with polar coordinates r, ?.
example_test.go 25 r, theta := cmplx.Polar(2i)
  /external/vulkan-validation-layers/libs/glm/gtx/
polar_coordinates.inl 13 GLM_FUNC_QUALIFIER detail::tvec3<T, P> polar
28 # pragma message("GLM: polar function returning degrees is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
39 detail::tvec2<T, P> const & polar
43 T const latitude(polar.x);
44 T const longitude(polar.y);
47 T const latitude(radians(polar.x));
48 T const longitude(radians(polar.y));
polar_coordinates.hpp 33 /// @brief Conversion from Euclidean space to polar space and revert.
53 /// Convert Euclidean to Polar coordinates, x is the xz distance, y, the latitude and z the longitude.
57 GLM_FUNC_DECL detail::tvec3<T, P> polar(
60 /// Convert Polar to Euclidean coordinates.
65 detail::tvec2<T, P> const & polar);
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/
polar_coordinates.inl 13 GLM_FUNC_QUALIFIER detail::tvec3<T, P> polar
28 # pragma message("GLM: polar function returning degrees is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
39 detail::tvec2<T, P> const & polar
43 T const latitude(polar.x);
44 T const longitude(polar.y);
47 T const latitude(radians(polar.x));
48 T const longitude(radians(polar.y));
polar_coordinates.hpp 33 /// @brief Conversion from Euclidean space to polar space and revert.
53 /// Convert Euclidean to Polar coordinates, x is the xz distance, y, the latitude and z the longitude.
57 GLM_FUNC_DECL detail::tvec3<T, P> polar(
60 /// Convert Polar to Euclidean coordinates.
65 detail::tvec2<T, P> const & polar);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug007.go 13 Polar Point
20 bug7.go:5: addtyp: renaming Point to Polar
  /prebuilts/go/linux-x86/test/fixedbugs/
bug007.go 13 Polar Point
20 bug7.go:5: addtyp: renaming Point to Polar
  /external/ImageMagick/MagickCore/
colorspace.h 40 LCHabColorspace, /* Cylindrical (Polar) Lab */
41 LCHuvColorspace, /* Cylindrical (Polar) Luv */
  /external/libcxx/test/std/numerics/complex.number/complex.value.ops/
polar.pass.cpp 14 // polar(const T& rho, const T& theta = T()); // changed from '0' by LWG#2870
25 assert(std::polar(rho) == x);
32 assert(std::polar(rho, theta) == x);
54 std::complex<double> z = std::polar(r, theta);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.value.ops/
polar.pass.cpp 14 // polar(const T& rho, const T& theta = 0);
25 assert(std::polar(rho) == x);
32 assert(std::polar(rho, theta) == x);
54 std::complex<double> z = std::polar(r, theta);
  /external/python/cpython2/Doc/library/
cmath.rst 25 Conversions to and from polar coordinates
35 *Polar coordinates* give an alternative way to represent a complex
36 number. In polar coordinates, a complex number *z* is defined by the
43 rectangular coordinates to polar coordinates and back.
71 .. function:: polar(x)
73 Return the representation of *x* in polar coordinates. Returns a
75 phase of *x*. ``polar(x)`` is equivalent to ``(abs(x),
83 Return the complex number *x* with polar coordinates *r* and *phi*.
  /frameworks/base/tests/WallpaperTest/res/xml/
test_wallpaper.xml 21 <!-- about the polar clock. -->
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
cmath.so 
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
PieRenderer.java 414 PointF polar = getPolar(x, y, !(tapMode)); local
420 PieItem item = findItem(polar);
434 item = findItem(polar);
457 if (polar.y < radius) {
465 PieItem item = findItem(polar);
558 * @param polar x: angle, y: dist
561 private PieItem findItem(PointF polar) {
565 if (inside(polar, item)) {
572 private boolean inside(PointF polar, PieItem item) {
573 return (item.getInnerRadius() < polar.y
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
PieRenderer.java 413 PointF polar = getPolar(x, y, !(mTapMode)); local
419 PieItem item = findItem(polar);
433 item = findItem(polar);
457 if (polar.y < mRadius) {
465 PieItem item = findItem(polar);
559 * @param polar x: angle, y: dist
562 private PieItem findItem(PointF polar) {
566 if (inside(polar, item)) {
573 private boolean inside(PointF polar, PieItem item) {
574 return (item.getInnerRadius() < polar.y
    [all...]
  /external/python/cpython3/Doc/library/
cmath.rst 26 Conversions to and from polar coordinates
36 *Polar coordinates* give an alternative way to represent a complex
37 number. In polar coordinates, a complex number *z* is defined by the
44 rectangular coordinates to polar coordinates and back.
70 .. function:: polar(x)
72 Return the representation of *x* in polar coordinates. Returns a
74 phase of *x*. ``polar(x)`` is equivalent to ``(abs(x),
80 Return the complex number *x* with polar coordinates *r* and *phi*.
  /external/llvm/docs/
YamlIO.rst 587 Polar which specifies a position in polar coordinates (distance, angle):
591 struct Polar {
604 You can support this by defining a MappingTraits that normalizes the polar
606 coordinates into polar when reading YAML.
614 struct MappingTraits<Polar> {
621 NormalizedPolar(IO &, Polar &polar)
622 : x(polar.distance * cos(polar.angle)),
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/datasets/
synthetic.py 175 theta: array-like, angles from polar coordinates to be converted
190 theta: array-like, angles from polar coordinates to be converted
210 theta: array-like, angles from polar coordinates to be converted
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_cmath.py 5 from cmath import phase, polar, rect, pi
293 """Wrapped version of polar that returns a complex number instead of
295 return complex(*polar(z))
302 elif fn == 'polar':
360 self.assertCISEqual(polar(0), (0., 0.))
361 self.assertCISEqual(polar(1.), (1., 0.))
362 self.assertCISEqual(polar(-1.), (1., pi))
363 self.assertCISEqual(polar(1j), (1., pi/2))
364 self.assertCISEqual(polar(-1j), (1., -pi/2))
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_360.c 29 // and 2 for the polar regions

Completed in 579 milliseconds

1 2 3 4 5 6