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:
authorJiakai Zhang <jaczhang@nvidia.com>2016-03-29 07:48:59 +0300
committerJiakai Zhang <jaczhang@nvidia.com>2016-03-29 07:48:59 +0300
commit57a5f4d106f95956c468476e80091fc8ed2893e9 (patch)
tree9edb749e15b96f57d67eec7120c3b06fdd128d31
parent69342e146f544074731349d61181cd9e2290f4e3 (diff)
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 a561981..8ab3cd9 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)