summaryrefslogtreecommitdiff
path: root/2993/CH2/EX2.7/Ex2_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2993/CH2/EX2.7/Ex2_7.sce')
-rw-r--r--2993/CH2/EX2.7/Ex2_7.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/2993/CH2/EX2.7/Ex2_7.sce b/2993/CH2/EX2.7/Ex2_7.sce
new file mode 100644
index 000000000..8e74f924e
--- /dev/null
+++ b/2993/CH2/EX2.7/Ex2_7.sce
@@ -0,0 +1,27 @@
+
+clc;
+close;
+
+F = [1 2;3 4];
+
+M = F;
+
+[n,n] = size(M); // Since its a square matrix m and n are same
+
+//U is a matrix of the order n whose all elements are 1
+U = [];
+for i = 1:n
+ for j = 1:n
+ U(i,j) = 1;
+ end
+end
+
+F = [(4*M) ((4*M)+(2*U)) ; ((4*M)+(3*U)) ((4*M)+(U))];
+
+disp(F,"F` = ",'The constructed higher order(4x4) matrix is ')
+
+//Note: The constructed matrix in the book is shown as F subscript (4,4) which can't be done in scilab console hence instead of that F` is used
+
+
+
+