summaryrefslogtreecommitdiff
path: root/2993/CH2/EX2.7/Ex2_7.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2993/CH2/EX2.7/Ex2_7.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
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
+
+
+
+