summaryrefslogtreecommitdiff
path: root/embellishing_a_plot/slides.org
diff options
context:
space:
mode:
authorJovina2011-05-04 12:05:01 +0530
committerJovina2011-05-04 12:05:01 +0530
commit8f769af90d747f7e12e4ef64ec2ee9dabf19b727 (patch)
tree23b5de3ab7c201220de16da2fcbaf6a54e128a0f /embellishing_a_plot/slides.org
parent19c8f29fa0be1c8697078fbeae780c5aa52b0676 (diff)
downloadst-scripts-8f769af90d747f7e12e4ef64ec2ee9dabf19b727.tar.gz
st-scripts-8f769af90d747f7e12e4ef64ec2ee9dabf19b727.tar.bz2
st-scripts-8f769af90d747f7e12e4ef64ec2ee9dabf19b727.zip
Modified files in module1.
Diffstat (limited to 'embellishing_a_plot/slides.org')
-rw-r--r--embellishing_a_plot/slides.org36
1 files changed, 2 insertions, 34 deletions
diff --git a/embellishing_a_plot/slides.org b/embellishing_a_plot/slides.org
index ab3342e..cbf5e01 100644
--- a/embellishing_a_plot/slides.org
+++ b/embellishing_a_plot/slides.org
@@ -50,55 +50,22 @@ MHRD, Govt. of India
- Add annotations to the plot.
- Set and Get the limits of axes.
* Question 1
- Plot sin(x) in blue colour and with linewidth as 3
-* Solution 1
- #+begin_src python
- In []: clf()
- In []: plot(x, sin(x), 'b', linewidth=3)
- #+end_src
+ Plot sin(x) in blue colour alongwith linewidth as 3
* Question 2
Plot the sine curve with green filled circles.
-* Solution 2
- #+begin_src python
- In []: clf()
- In []: plot(x, cos(x), 'go')
- #+end_src
* Question 3
Plot the curve of x vs tan(x) in red dashed line and linewidth 3
-* Solution 3
- #+begin_src python
- In []: clf()
- In []: plot(x, cos(x), 'r--')
- #+end_src
* Question 4
Change the title of the figure such that the whole title is
formatted in LaTex style
-* Solution 4
- #+begin_src python
- In []: title("$Parabolic function -x^2+4x-5$")
- #+end_src
* Question 5
Set the x and y labels as "x" and "f(x)" in LaTex style.
-* Solution 5
- #+begin_src python
- In []: xlabel("$x$")
- In []: yalbel("$f(x)$")
- #+end_src
* Question 6
Make an annotation called "root" at the point (-4, 0). What happens
to the first annotation?
-* Solution 6
- #+begin_src python
- In []: annotate("root", xy=(-4,0))
- #+end_src
* Question 7
Set the limits of axes such that the area of interest is the
rectangle (-1, -15) and (3, 0)
-* Solution 7
- #+begin_src python
- In []: xlim(-1, 3)
- In []: ylim(-15, 0)
- #+end_src
* Summary
In this tutorial,we have learnt to-
+ Modify the attributes of plot by passing additional arguments
@@ -124,3 +91,4 @@ MHRD, Govt. of India
#+end_latex
+