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:
authorMisko <misko@cs.toronto.edu>2016-04-28 00:04:39 +0300
committerMisko <misko@cs.toronto.edu>2016-04-28 00:04:39 +0300
commitcdfd40f865de5896ca77e653bdd986d0a0314ebb (patch)
treeec962f9d8ca8d13e6b0902d6afb6849283b48798
parent1955fb2fdf6dcdc5241727d09a838987700cb715 (diff)
Fix 'filledcurves' example
-rw-r--r--doc/plotline.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/plotline.md b/doc/plotline.md
index 218a992..55bd59c 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,'with lines ls 1'},{x,ym,'with lines ls 1'},{x,y,'with lines ls 1'})
+gnuplot.plot({yy,'with filledcurves fill transparent solid 0.5'},{x,yp,'with lines ls 1'},{x,ym,'with lines ls 1'},{x,y,'with lines ls 1'})
```
![](plot_filled.png)