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 /27/CH5/EX5.2.2 | |
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 '27/CH5/EX5.2.2')
-rwxr-xr-x | 27/CH5/EX5.2.2/5_2_2.jpg | bin | 0 -> 40095 bytes | |||
-rwxr-xr-x | 27/CH5/EX5.2.2/Example_5_2_2.sce | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/27/CH5/EX5.2.2/5_2_2.jpg b/27/CH5/EX5.2.2/5_2_2.jpg Binary files differnew file mode 100755 index 000000000..017721c91 --- /dev/null +++ b/27/CH5/EX5.2.2/5_2_2.jpg diff --git a/27/CH5/EX5.2.2/Example_5_2_2.sce b/27/CH5/EX5.2.2/Example_5_2_2.sce new file mode 100755 index 000000000..24574dd95 --- /dev/null +++ b/27/CH5/EX5.2.2/Example_5_2_2.sce @@ -0,0 +1,20 @@ +clear;
+clc;
+close;
+set(gca(),"auto_clear","off") //hold on
+
+for x=-20:0.5:20
+ y1 = x;
+ y=0;
+ x1=0;
+ //h1=acosh(x);
+ plot2d(x,y1,style=-2)
+ plot2d(x,y,style=-4)
+ plot2d(x1,x,style=-4)
+
+end
+
+for x=-5:0.5:5
+ y2=-4*x;
+ plot2d(x,y2,style=-2)
+end
|