Anúncio: todos os projetos não comerciais registrados para usar o Earth Engine antes de 15 de abril de 2025 precisam verificar a qualificação não comercial para manter o acesso ao Earth Engine.
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Calcula a decomposição de Cholesky de uma matriz. A decomposição de Cholesky é uma decomposição na forma L * L', em que L é uma matriz triangular inferior. A entrada precisa ser uma matriz simétrica positiva-definida. Retorna um dicionário com uma entrada chamada "L".
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Não contém as informações de que eu preciso","missingTheInformationINeed","thumb-down"],["Muito complicado / etapas demais","tooComplicatedTooManySteps","thumb-down"],["Desatualizado","outOfDate","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Problema com as amostras / o código","samplesCodeIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2025-07-29 UTC."],[[["This function calculates the Cholesky decomposition of a symmetric positive-definite matrix, breaking it down into the form L \\* L' where L is a lower triangular matrix."],["The decomposition result is returned as a dictionary containing the lower triangular matrix 'L'."],["It is specifically designed for array objects and requires the input array to be both symmetric and positive-definite."],["The function is invoked using the `matrixCholeskyDecomposition()` method on an array object."]]],["The `matrixCholeskyDecomposition` function computes the Cholesky decomposition of a symmetric positive-definite matrix. It decomposes the input matrix into a lower triangular matrix (L) and its transpose (L'). The function requires an array as input. It returns a dictionary containing the lower triangular matrix 'L' as its sole entry. This decomposition represents the matrix in the form L * L'.\n"]]