Skip to content

Commit

Permalink
update(linux-plot): basic usage of gnuplot
Browse files Browse the repository at this point in the history
issue #104
  • Loading branch information
sabertazimi committed Dec 12, 2018
1 parent 239c1f1 commit 92f4c51
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions programming/linux/linuxBasicNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
- [Monitor Info](#monitor-info)
- [Touchpad Synaptics](#touchpad-synaptics)
- [并行命令](#并行命令)
- [Plot Command](#plot-command)
- [Other Command](#other-command)
- [Time](#time)
- [Shell编程](#shell编程)
Expand Down Expand Up @@ -1002,6 +1003,24 @@ synclient TouchpadOff=0

> e.g ls && echo yes >> .log || echo no >> .log
### Plot Command

chart.gp

```bash
#!/usr/bin/env gnuplot

set term wxt enhanced
set xtics
set view
set multiplot
set size
set origin
fit

plot 'data.dat' using 1:2, 'data.dat' using 1:3
```

### Other Command

#### Time
Expand Down
2 changes: 1 addition & 1 deletion programming/linux/setUp/ubuntu/ubuntu_16.04.ini
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

packages = screen zsh

packages = doxygen graphviz ctags cscope manpages-zh
packages = gnuplot doxygen graphviz ctags cscope manpages-zh

packages = octave transfig epstool cifs-utils

Expand Down

0 comments on commit 92f4c51

Please sign in to comment.