summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Sethi2010-04-09 00:45:02 +0530
committerAmit Sethi2010-04-09 00:45:02 +0530
commita7c617b8190a994519bc8967f72024a27fb7348e (patch)
treeea237b25fed48bae7a3fb2e4391db85f934e2d30
parentcebb606bb2f961748736eb17fb390f5c16717721 (diff)
downloadst-scripts-a7c617b8190a994519bc8967f72024a27fb7348e.tar.gz
st-scripts-a7c617b8190a994519bc8967f72024a27fb7348e.tar.bz2
st-scripts-a7c617b8190a994519bc8967f72024a27fb7348e.zip
some small changes made in sentences
-rw-r--r--plotting-files.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/plotting-files.txt b/plotting-files.txt
index 1121d70..c70d4c7 100644
--- a/plotting-files.txt
+++ b/plotting-files.txt
@@ -20,7 +20,7 @@ plot (x, y, 'o')
Here, we have our plot!
[We close the plot window. ]
-Now, that we know how to plot data from lists, we will look at plotting data from a text file. Essentially, we read the data from the file and fit them into lists again. Then we can easily plot it, as we already did before.
+Now, that we know how to plot data from lists, we will look at plotting data from a text file. Essentially, we read the data from the file and fit them into lists again. Then we can easily plot it, as we did before.
As an example we will use the data collected from a simple pendulum experiment.
@@ -59,7 +59,7 @@ for time in t:
Now lists l(en) and tsq have the required data. We can simply plot them, as we did earlier.
plot(l, tsq, 'o')
-So here is the required plot. In this way, you can plot data from files. Hope this information was helpful. See you.
+So here is the required plot. In this way, you can plot data from files. Hope this information was helpful. See you in the next tutorial
******************