diff options
Diffstat (limited to '26/CH2/EX2.6.7/2_6_7.sce')
-rwxr-xr-x | 26/CH2/EX2.6.7/2_6_7.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/26/CH2/EX2.6.7/2_6_7.sce b/26/CH2/EX2.6.7/2_6_7.sce new file mode 100755 index 000000000..39cc4b315 --- /dev/null +++ b/26/CH2/EX2.6.7/2_6_7.sce @@ -0,0 +1,15 @@ +disp('the consumption matrix is:')
+C=[0 .5;.6 .2];
+disp(C)
+disp('the demand for 1 unit of output sector 1')
+d1=[1;0]
+disp(d1)
+disp('the production required to satisfy demand d1 is:')
+x1=inv(eye(2,2)-C)*d1
+disp(x1,'x1=')
+disp('the final demand is:')
+d2=[51;30]
+disp(d2,'d2=')
+disp('the production required to satisfy demand d2 is:')
+x2=inv(eye(2,2)-C)*d2
+disp(x2,'x2=')
\ No newline at end of file |