From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3293/CH2/EX2.10/Ex2_10.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 3293/CH2/EX2.10/Ex2_10.sce (limited to '3293/CH2/EX2.10/Ex2_10.sce') diff --git a/3293/CH2/EX2.10/Ex2_10.sce b/3293/CH2/EX2.10/Ex2_10.sce new file mode 100755 index 000000000..4353013aa --- /dev/null +++ b/3293/CH2/EX2.10/Ex2_10.sce @@ -0,0 +1,18 @@ +//page 38 +//Example 2.10 +clear; +clc; +close; +A = [1 2 0 3 0;0 0 1 4 0;0 0 0 0 1]; +disp(A,'A = '); +disp('The subspace of F^5 spanned by a1 a2 a3(row vectors of A) is called row space of A.'); +a1 = A(1,:); +a2 = A(2,:); +a3 = A(3,:); +disp(a1,'a1 = '); +disp(a2,'a2 = '); +disp(a3,'a3 = '); +disp('And, it is also the row space of B.'); +B = [1 2 0 3 0;0 0 1 4 0;0 0 0 0 1;-4 -8 1 -8 0]; +disp(B,'B = '); +//end -- cgit