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 /1322/CH19/EX19.1/160ex.sce | |
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 '1322/CH19/EX19.1/160ex.sce')
-rwxr-xr-x | 1322/CH19/EX19.1/160ex.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1322/CH19/EX19.1/160ex.sce b/1322/CH19/EX19.1/160ex.sce new file mode 100755 index 000000000..8f1c803fb --- /dev/null +++ b/1322/CH19/EX19.1/160ex.sce @@ -0,0 +1,23 @@ + +clear ;
+clc;
+close;
+clf;
+x=linspace(0,1,7);
+y=10^x;
+plot2d(x,y,2);
+xtitle(" graph of y=10^x","x axis","y axis");
+legend("y=10^x");
+xgrid()
+
+//ex1:1.8*2.6=? ,from graph
+//1.8=10^0.26 \n 2.6=10^0.42
+x=10^0.26;y=10^0.42;
+format(4)
+ex1_ans=x*y//from the graph
+
+//ex2:9^(1/3)
+//9=10^0.96
+x=10^0.96;
+format(4)
+ex2_ans=x^(1/3)//third law of indices
|