ee.Image.matrixFnorm
Computes the Frobenius norm of the matrix.
Usage | Returns |
---|
Image.matrixFnorm() | Image |
Argument | Type | Details |
---|
this: value | Image | The image to which the operation is applied. |
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."],[[["Computes the Frobenius norm of an image's underlying matrix."],["Returns the original image, meaning it does not modify the input image but calculates a value based on its data."],["The operation is accessed via the `matrixFnorm()` method applied to an `Image` object."]]],["The `matrixFnorm()` function calculates the Frobenius norm of a matrix represented as an image. It takes one argument: an `Image` object (`value`) representing the matrix. Applying this function to the input `Image` object results in a new `Image` object containing the computed Frobenius norm. The function does not modify the original image but instead creates a new `Image` object.\n"]]