diff options
Diffstat (limited to '3673/CH16/EX16.5/Ex16_5.sce')
-rw-r--r-- | 3673/CH16/EX16.5/Ex16_5.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3673/CH16/EX16.5/Ex16_5.sce b/3673/CH16/EX16.5/Ex16_5.sce new file mode 100644 index 000000000..f050ef7c0 --- /dev/null +++ b/3673/CH16/EX16.5/Ex16_5.sce @@ -0,0 +1,8 @@ +//Example 16_5 page no:752
+clc;
+Z=[3,1,
+2,1];
+y=[1,-1,
+-2,3];
+x=det(Z)*det(y);
+disp(x,"the product of delta x and delta y is");
|