summaryrefslogtreecommitdiff
path: root/3293/CH1/EX1.7/Ex1_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3293/CH1/EX1.7/Ex1_7.sce')
-rwxr-xr-x3293/CH1/EX1.7/Ex1_7.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3293/CH1/EX1.7/Ex1_7.sce b/3293/CH1/EX1.7/Ex1_7.sce
new file mode 100755
index 000000000..47865fb65
--- /dev/null
+++ b/3293/CH1/EX1.7/Ex1_7.sce
@@ -0,0 +1,11 @@
+//page 9
+//Example 1.7
+clear;
+close;
+clc;
+n = rand();
+n = round(n*10);
+disp(eye(n,n));
+printf('This is an Identity matrix of order %d * %d',n,n);
+disp('And It is a row reduced matrix.');
+//end