diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1332/CH2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1332/CH2')
-rwxr-xr-x | 1332/CH2/EX2.4/2_4.pdf | bin | 0 -> 6062 bytes | |||
-rwxr-xr-x | 1332/CH2/EX2.4/2_4.sce | 12 | ||||
-rwxr-xr-x | 1332/CH2/EX2.6/2_6.pdf | bin | 0 -> 6015 bytes | |||
-rwxr-xr-x | 1332/CH2/EX2.6/2_6.sce | 5 |
4 files changed, 17 insertions, 0 deletions
diff --git a/1332/CH2/EX2.4/2_4.pdf b/1332/CH2/EX2.4/2_4.pdf Binary files differnew file mode 100755 index 000000000..10033756a --- /dev/null +++ b/1332/CH2/EX2.4/2_4.pdf diff --git a/1332/CH2/EX2.4/2_4.sce b/1332/CH2/EX2.4/2_4.sce new file mode 100755 index 000000000..e2c8ba0fa --- /dev/null +++ b/1332/CH2/EX2.4/2_4.sce @@ -0,0 +1,12 @@ +//Example 2.4
+//Solving Simultaneous Linear Equation
+//Page 36
+clc;close;clear;
+//eq1= 5x-331y=3.5
+//eq2= 6x-397y=5.2
+
+A=[5,-331;6,-397];
+B=[3.5;5.2];
+C=inv(A)*B; //finding value by multiplying inverse with values
+disp(C(1,1),'Value of x=');
+disp(C(2,1),'Value of y=');
\ No newline at end of file diff --git a/1332/CH2/EX2.6/2_6.pdf b/1332/CH2/EX2.6/2_6.pdf Binary files differnew file mode 100755 index 000000000..594998e96 --- /dev/null +++ b/1332/CH2/EX2.6/2_6.pdf diff --git a/1332/CH2/EX2.6/2_6.sce b/1332/CH2/EX2.6/2_6.sce new file mode 100755 index 000000000..918b5281b --- /dev/null +++ b/1332/CH2/EX2.6/2_6.sce @@ -0,0 +1,5 @@ +//Example 2.6
+//Integration
+//Page no. 36
+clc;clear;close;
+disp(integrate('1/x','x',exp(-4),1),'Integration Value='); //performing integration with respect to dx
\ No newline at end of file |