summaryrefslogtreecommitdiff
path: root/basic-plot.txt
diff options
context:
space:
mode:
authorAmit Sethi2010-04-02 19:30:17 +0530
committerAmit Sethi2010-04-02 19:30:17 +0530
commit049e3db0b8662eb5eaa69d70822198580b8d20a6 (patch)
treec59b7a63bbcf4a9f4e85e5ce8bd152733101057f /basic-plot.txt
parente8121881828fcb8cdf2c07a2e4cf8690a9fd7e3b (diff)
downloadst-scripts-049e3db0b8662eb5eaa69d70822198580b8d20a6.tar.gz
st-scripts-049e3db0b8662eb5eaa69d70822198580b8d20a6.tar.bz2
st-scripts-049e3db0b8662eb5eaa69d70822198580b8d20a6.zip
Changes in the end some problem with continuity of commands . Fixed it .
Diffstat (limited to 'basic-plot.txt')
-rw-r--r--basic-plot.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic-plot.txt b/basic-plot.txt
index 9d49bde..d7cd3c4 100644
--- a/basic-plot.txt
+++ b/basic-plot.txt
@@ -157,7 +157,7 @@ In []: plot(x, cos(x), 'ko')
In []: clf()
A plot using dashed lines can be generated by passing the '--' parameter
-In []: plot(x, y, '--')
+In []: plot(x, sin(x), '--')
You may look at more options related to colors and type of lines using plot?