ee.Array.double
On an element-wise basis, casts the input value to a 64-bit float.
Usage | Returns |
---|
Array.double() | Array |
Argument | Type | Details |
---|
this: input | Array | The input array. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `double` method transforms the elements of an input array into 64-bit floats."],["This function operates on each element individually, ensuring a type conversion for every value within the array."],["When applied, `double` produces a new array where all elements are represented as 64-bit floats."],["It's specifically designed for Array objects and can be accessed using the `Array.double()` syntax."]]],["The input array, denoted as `input`, is cast element-wise to a 64-bit floating-point representation. The `Array.double()` function is used for this operation. This function takes the input array and returns a new array with the same dimensions, where each element is converted to a 64-bit float. The function's sole argument is the input array itself.\n"]]