summaryrefslogtreecommitdiff
path: root/26/CH5/EX5.5.7/5_5_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '26/CH5/EX5.5.7/5_5_7.sce')
-rwxr-xr-x26/CH5/EX5.5.7/5_5_7.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/26/CH5/EX5.5.7/5_5_7.sce b/26/CH5/EX5.5.7/5_5_7.sce
new file mode 100755
index 000000000..34c591d9e
--- /dev/null
+++ b/26/CH5/EX5.5.7/5_5_7.sce
@@ -0,0 +1,8 @@
+disp('Matrix A=')
+a=[sqrt(3) -1;1 sqrt(3)]
+disp(a)
+disp('Eigenvalues of A are:')
+eig=spec(a)
+disp(eig)
+disp('The scale factor associated with the transformation x to Ax is:')
+disp(abs(eig(1,1))) \ No newline at end of file