summaryrefslogtreecommitdiff
path: root/149/CH2/EX2.43/ex43.sce
diff options
context:
space:
mode:
Diffstat (limited to '149/CH2/EX2.43/ex43.sce')
-rwxr-xr-x149/CH2/EX2.43/ex43.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/149/CH2/EX2.43/ex43.sce b/149/CH2/EX2.43/ex43.sce
new file mode 100755
index 000000000..276d63b07
--- /dev/null
+++ b/149/CH2/EX2.43/ex43.sce
@@ -0,0 +1,10 @@
+clear
+clc
+A=[1 1 3;1 5 1;3 1 1]
+disp("let R represents the matrix of transformation and P represents a diagonal matrix whose values are the eigen values of A.then ")
+[R P]=spec(A)
+disp("R is normalised.let U represents unnormalised version of r ")
+U(:,1)=R(:,1)*sqrt(2);
+U(:,2)=R(:,2)*sqrt(3);
+U(:,3)=R(:,3)*sqrt(6)
+disp("three eigen vectors are the three columns of U") \ No newline at end of file