ee.Array.matrixDeterminant
Computes the determinant of the matrix.
Usage | Returns |
---|
Array.matrixDeterminant() | Number |
Argument | Type | Details |
---|
this: input | Array | The array to compute on. |
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 and returns the numerical determinant of a given matrix (represented as an array)."],["The `matrixDeterminant()` function is applied to an array, which represents the input matrix."]]],["The `matrixDeterminant()` method calculates the determinant of a matrix. It operates on an array (`input`) representing the matrix. The method returns a single numerical value representing the determinant. The input is the array on which the determinant computation is performed. No additional arguments are required.\n"]]