summaryrefslogtreecommitdiff
path: root/embellishing_a_plot/script.rst
diff options
context:
space:
mode:
authorJovina2011-05-18 16:52:22 +0530
committerJovina2011-05-18 16:52:22 +0530
commit6b8c5af7587ea9f95ac0c80222039a9fb418ee6a (patch)
treef258a0fd7018d95a35ff8c971ee6d17da1c8907c /embellishing_a_plot/script.rst
parent819852954661fd34144e2d606d292481c607a0b9 (diff)
downloadst-scripts-6b8c5af7587ea9f95ac0c80222039a9fb418ee6a.tar.gz
st-scripts-6b8c5af7587ea9f95ac0c80222039a9fb418ee6a.tar.bz2
st-scripts-6b8c5af7587ea9f95ac0c80222039a9fb418ee6a.zip
Minor modifications to embellishing_a_plot & using_plot_interactively
Diffstat (limited to 'embellishing_a_plot/script.rst')
-rw-r--r--embellishing_a_plot/script.rst14
1 files changed, 10 insertions, 4 deletions
diff --git a/embellishing_a_plot/script.rst b/embellishing_a_plot/script.rst
index 4fa6168..a69c60f 100644
--- a/embellishing_a_plot/script.rst
+++ b/embellishing_a_plot/script.rst
@@ -105,6 +105,7 @@ The same plot is seen in red color.
The thickness of the line can be altered by 'linewidth' argument.
.. L7
+{{{ Switch to terminal }}}
::
@@ -134,6 +135,7 @@ A combination of color and linewidth would do the job for us.
.. L10
+{{{ Switch to terminal }}}
::
clf()
@@ -165,8 +167,8 @@ We get a plot with only points.
To get the same plot in blue color.
.. L13
-
- ::
+::
+
clf()
plot(x, sin(x), 'b.')
@@ -257,7 +259,8 @@ To add a title to the plot to describe what the plot is,use the ``title``
command.
.. L21
-
+
+{{{ Switch to terminal }}}
::
title("Parabolic function -x^2+4x-5")
@@ -307,7 +310,8 @@ in LaTeX style.
The solution is to enclose the whole string in between $.
.. L25
-
+
+{{{ Switch to terminal }}}
::
title("$Parabolic function -x^2+4x-5$")
@@ -356,6 +360,7 @@ in between two $.
.. L30
+{{{ Switch to terminal }}}
::
xlabel("$x$")
@@ -475,6 +480,7 @@ The lower and upper limits of y-axis are -15 and 0 respectively.
.. L39
+{{{ Switch to terminal }}}
::
xlim(-1, 3)