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:
authorAlfredo Canziani <alfredo.canziani@gmail.com>2014-05-30 01:18:48 +0400
committerAlfredo Canziani <alfredo.canziani@gmail.com>2014-05-30 01:18:48 +0400
commit88ac2e98ae1d95de6afb5eb0e7723236ec1e71fe (patch)
treee473f235ea1ae2cb333ba13f9b6e7f969be44fa4
parent3673ac5e5591dcaae413b6c365cb5f6eb210d5b2 (diff)
Update README.md
Fixing fomatting
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index c348925..173f02c 100644
--- a/README.md
+++ b/README.md
@@ -142,15 +142,15 @@ gnuplot.plot(torch.sin(x))
```
![](doc/plot_x.png)
-In more general form, plot vector ` y vs x ` using the format
+In more general form, plot vector `y` vs `x` using the format
specified. The possible entries of format string can be
- * '.' for dots
- * '+' for points
- * '-' for lines
- * '+-' for points and lines
- * '~' for using smoothed lines with cubic interpolation
- * '|' for using boxes
- * 'v' for drawing vector fiels. (In this case, x and y have to be two column vectors (x,xdelta),(y,ydelta))
+ * `.` for dots
+ * `+` for points
+ * `-` for lines
+ * `+-` for points and lines
+ * `~` for using smoothed lines with cubic interpolation
+ * `|` for using boxes
+ * `v` for drawing vector fiels. (In this case, `x` and `y` have to be two column vectors `(x, xdelta)`, `(y, ydelta)`)
* custom string, one can also pass custom strings to use full capability of gnuplot.
```lua