summaryrefslogtreecommitdiff
path: root/1332/CH2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1332/CH2
downloadScilab-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-x1332/CH2/EX2.4/2_4.pdfbin0 -> 6062 bytes
-rwxr-xr-x1332/CH2/EX2.4/2_4.sce12
-rwxr-xr-x1332/CH2/EX2.6/2_6.pdfbin0 -> 6015 bytes
-rwxr-xr-x1332/CH2/EX2.6/2_6.sce5
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
new file mode 100755
index 000000000..10033756a
--- /dev/null
+++ b/1332/CH2/EX2.4/2_4.pdf
Binary files differ
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
new file mode 100755
index 000000000..594998e96
--- /dev/null
+++ b/1332/CH2/EX2.6/2_6.pdf
Binary files differ
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