blob: f7677ee538516ee35f058916175ca21b2ce6f734 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
//Eg-3.10
//pg-92
clear
clc
//cholesky decomposition
A=[2 1 0;1 2 1;0 1 2];
B=[3.6;6.7;-1.9];
if A==A' then
disp("A is symmetric and we have to check whether it is positive definite or not")
end
for k=1:3
s(k)=det(A(1:k,1:k));
end
j=min(s);
if j>0 then
disp("given matrix is positive definite and hence cholesky decomposition can be performed")
[n,n]=size(A);
summ1=0;
summ2=0;
for i=1:n
summ1=0;
for k=1:i-1
summ1=summ1+(L(i,k))^2;
end
L(i,i)=(A(i,i)-summ1)^(1/2);
for j=i+1:n
summ2=0;
for k=1:i-1
summ2=summ2+L(i,k)*L(j,k);
end
L(j,i)=(A(i,j)-summ2)/(L(i,i));
end
end
if L*L'==A then
disp("verification was done")
end
Y=inv(L)*B;
X=inv(L')*Y;
disp(X)
end
|