diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /149/CH2/EX2.43 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '149/CH2/EX2.43')
-rwxr-xr-x | 149/CH2/EX2.43/ex43.sce | 10 |
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 |