summaryrefslogtreecommitdiff
path: root/26/CH3/EX3.3.19
diff options
context:
space:
mode:
Diffstat (limited to '26/CH3/EX3.3.19')
-rwxr-xr-x26/CH3/EX3.3.19/3_3_19.sce7
1 files changed, 7 insertions, 0 deletions
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