Cholesky decomposition of normalized matrix

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I need to compute the Cholesky decomposition $A=LL^T$ in order to obtain the matrix $L$.
My matrix $A$ is often badly conditioned (non-positive definite). I am now trying an approach where I normalize $A$ with a matrix $N$ before performing the decomposition. I want to reapply $N$ to the obtained result in order to find the correct matrix $L$.
Is such a method possible, and if so, how and why would it work? Are there any alternative ways to deal with non-positive definite matrices in a Cholesky decomposition?
matrix-decomposition positive-definite
add a comment |Â
up vote
0
down vote
favorite
I need to compute the Cholesky decomposition $A=LL^T$ in order to obtain the matrix $L$.
My matrix $A$ is often badly conditioned (non-positive definite). I am now trying an approach where I normalize $A$ with a matrix $N$ before performing the decomposition. I want to reapply $N$ to the obtained result in order to find the correct matrix $L$.
Is such a method possible, and if so, how and why would it work? Are there any alternative ways to deal with non-positive definite matrices in a Cholesky decomposition?
matrix-decomposition positive-definite
If the non psd-ness stems only from numerical imprecision, you could simply stop the Cholesky process when the square root of a very slightly negative number occurs. At that point you have an approximate partial, low rank decomposition, which might be good enough for your purposes.
â kimchi lover
Sep 3 at 13:03
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to compute the Cholesky decomposition $A=LL^T$ in order to obtain the matrix $L$.
My matrix $A$ is often badly conditioned (non-positive definite). I am now trying an approach where I normalize $A$ with a matrix $N$ before performing the decomposition. I want to reapply $N$ to the obtained result in order to find the correct matrix $L$.
Is such a method possible, and if so, how and why would it work? Are there any alternative ways to deal with non-positive definite matrices in a Cholesky decomposition?
matrix-decomposition positive-definite
I need to compute the Cholesky decomposition $A=LL^T$ in order to obtain the matrix $L$.
My matrix $A$ is often badly conditioned (non-positive definite). I am now trying an approach where I normalize $A$ with a matrix $N$ before performing the decomposition. I want to reapply $N$ to the obtained result in order to find the correct matrix $L$.
Is such a method possible, and if so, how and why would it work? Are there any alternative ways to deal with non-positive definite matrices in a Cholesky decomposition?
matrix-decomposition positive-definite
matrix-decomposition positive-definite
asked Sep 3 at 7:50
Michiel
1
1
If the non psd-ness stems only from numerical imprecision, you could simply stop the Cholesky process when the square root of a very slightly negative number occurs. At that point you have an approximate partial, low rank decomposition, which might be good enough for your purposes.
â kimchi lover
Sep 3 at 13:03
add a comment |Â
If the non psd-ness stems only from numerical imprecision, you could simply stop the Cholesky process when the square root of a very slightly negative number occurs. At that point you have an approximate partial, low rank decomposition, which might be good enough for your purposes.
â kimchi lover
Sep 3 at 13:03
If the non psd-ness stems only from numerical imprecision, you could simply stop the Cholesky process when the square root of a very slightly negative number occurs. At that point you have an approximate partial, low rank decomposition, which might be good enough for your purposes.
â kimchi lover
Sep 3 at 13:03
If the non psd-ness stems only from numerical imprecision, you could simply stop the Cholesky process when the square root of a very slightly negative number occurs. At that point you have an approximate partial, low rank decomposition, which might be good enough for your purposes.
â kimchi lover
Sep 3 at 13:03
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2903624%2fcholesky-decomposition-of-normalized-matrix%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
If the non psd-ness stems only from numerical imprecision, you could simply stop the Cholesky process when the square root of a very slightly negative number occurs. At that point you have an approximate partial, low rank decomposition, which might be good enough for your purposes.
â kimchi lover
Sep 3 at 13:03