gnuplot-wrapper 0.0.2

A small wrapper for working with gnuplot.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# gnuplot-wrapper

Gnuplot -- для работы с процессом gnuplot

Script -- для работы со скриптами gnuplot

```rust
let script = Script::new()
    .add("plot 2*x");
Gnuplot::execute(script)
    .wait();
```