Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Oblicza rozkład Choleskiego macierzy. Rozkład Choleskiego to rozkład w postaci L * L', gdzie L jest dolną macierzą trójkątną. Dane wejściowe muszą być symetryczną macierzą dodatnio określoną. Zwraca słownik z 1 elementem o nazwie „L”.
[[["Łatwo zrozumieć","easyToUnderstand","thumb-up"],["Rozwiązało to mój problem","solvedMyProblem","thumb-up"],["Inne","otherUp","thumb-up"]],[["Brak potrzebnych mi informacji","missingTheInformationINeed","thumb-down"],["Zbyt skomplikowane / zbyt wiele czynności do wykonania","tooComplicatedTooManySteps","thumb-down"],["Nieaktualne treści","outOfDate","thumb-down"],["Problem z tłumaczeniem","translationIssue","thumb-down"],["Problem z przykładami/kodem","samplesCodeIssue","thumb-down"],["Inne","otherDown","thumb-down"]],["Ostatnia aktualizacja: 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"]]