Computes the dot product. Computes the dot product of each pair of 1-D arrays in the bands of the input images. Args: image2: Second array image of 1-D vectors. Returns: An ee.Image.
(self, image2: _arg_types.Image)
| 834 | return apifunction.ApiFunction.call_(self.name() + '.arrayDimensions', self) |
| 835 | |
| 836 | def arrayDotProduct(self, image2: _arg_types.Image) -> Image: |
| 837 | """Computes the dot product. |
| 838 | |
| 839 | Computes the dot product of each pair of 1-D arrays in the bands of the |
| 840 | input images. |
| 841 | |
| 842 | Args: |
| 843 | image2: Second array image of 1-D vectors. |
| 844 | |
| 845 | Returns: |
| 846 | An ee.Image. |
| 847 | """ |
| 848 | |
| 849 | return apifunction.ApiFunction.call_( |
| 850 | self.name() + '.arrayDotProduct', self, image2 |
| 851 | ) |
| 852 | |
| 853 | def arrayFlatten( |
| 854 | self, |