diff options
Diffstat (limited to '2915/CH5/EX5.1')
-rwxr-xr-x | 2915/CH5/EX5.1/5_1.JPG | bin | 0 -> 15085 bytes | |||
-rwxr-xr-x | 2915/CH5/EX5.1/Ex5_1.sce | 11 | ||||
-rwxr-xr-x | 2915/CH5/EX5.1/plot5_1.jpeg | bin | 0 -> 221594 bytes |
3 files changed, 11 insertions, 0 deletions
diff --git a/2915/CH5/EX5.1/5_1.JPG b/2915/CH5/EX5.1/5_1.JPG Binary files differnew file mode 100755 index 000000000..c3bd9d128 --- /dev/null +++ b/2915/CH5/EX5.1/5_1.JPG diff --git a/2915/CH5/EX5.1/Ex5_1.sce b/2915/CH5/EX5.1/Ex5_1.sce new file mode 100755 index 000000000..ab91e5e13 --- /dev/null +++ b/2915/CH5/EX5.1/Ex5_1.sce @@ -0,0 +1,11 @@ +//Example 5.1
+//To sketch the graph of minus sinx in a given interval
+clear,clc;
+
+x = linspace(-0,2*%pi,50);
+y = -sin(x) ;
+set(gca(),"grid",[5 5]);
+plot(x,y);
+xlabel("$0\le x\le 2*pi$","fontsize",4,"color","red");
+ylabel("$y(x)=-sin(x)$","fontsize",4,"color","red");
+title("Example 5.1","color","blue","fontsize",9);
diff --git a/2915/CH5/EX5.1/plot5_1.jpeg b/2915/CH5/EX5.1/plot5_1.jpeg Binary files differnew file mode 100755 index 000000000..0638cbf04 --- /dev/null +++ b/2915/CH5/EX5.1/plot5_1.jpeg |