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 --- 26/CH3/EX3.3.19/3_3_19.sce | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 26/CH3/EX3.3.19/3_3_19.sce (limited to '26/CH3/EX3.3.19') diff --git a/26/CH3/EX3.3.19/3_3_19.sce b/26/CH3/EX3.3.19/3_3_19.sce new file mode 100755 index 000000000..068e15ed6 --- /dev/null +++ b/26/CH3/EX3.3.19/3_3_19.sce @@ -0,0 +1,7 @@ +disp('the points forming the parrallelogram are') +disp('(0,0),(5,2),(6,4),(11,6)') +disp('using the vertices adjacent to origin to form a matrix') +A=[5 6;2 4] +disp(A,'A=') +disp('Area of parallelogram = det(A)') +disp(det(A),'=') \ No newline at end of file -- cgit