Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/gnuplot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2016-03-29 09:08:03 +0300
committerSoumith Chintala <soumith@gmail.com>2016-03-29 09:08:03 +0300
commitd356f63829b2d1356058500a0af9f06b4cd504b9 (patch)
treedacf796094c784f773d47ac3b458c86c50cc87fd
parent49086d21e1a24f5588769e26d746093ebf02a9c4 (diff)
parent57a5f4d106f95956c468476e80091fc8ed2893e9 (diff)
Merge pull request #24 from Jiakai/master
change line plot format string
-rw-r--r--doc/plotline.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/plotline.md b/doc/plotline.md
index c7960de..218a992 100644
--- a/doc/plotline.md
+++ b/doc/plotline.md
@@ -50,6 +50,6 @@ yp = y+0.3+torch.rand(x:size())*0.1
ym = y-(torch.rand(x:size())*0.1+0.3)
yy = torch.cat(x,ym,2)
yy = torch.cat(yy,yp,2)
-gnuplot.plot({yy,' filledcurves'},{x,yp,'lines ls 1'},{x,ym,'lines ls 1'},{x,y,'lines ls 1'})
+gnuplot.plot({yy,' filledcurves'},{x,yp,'with lines ls 1'},{x,ym,'with lines ls 1'},{x,y,'with lines ls 1'})
```
![](plot_filled.png)