Skip to content

Commit cdfd40f

Browse files
committed
Fix 'filledcurves' example
1 parent 1955fb2 commit cdfd40f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/plotline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ yp = y+0.3+torch.rand(x:size())*0.1
5050
ym = y-(torch.rand(x:size())*0.1+0.3)
5151
yy = torch.cat(x,ym,2)
5252
yy = torch.cat(yy,yp,2)
53-
gnuplot.plot({yy,' filledcurves'},{x,yp,'with lines ls 1'},{x,ym,'with lines ls 1'},{x,y,'with lines ls 1'})
53+
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'})
5454
```
5555
![](plot_filled.png)

0 commit comments

Comments
 (0)