MCPcopy
hub / github.com/google/earthengine-api / arrayDotProduct

Method arrayDotProduct

python/ee/image.py:836–851  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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,

Callers 1

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by 1