Files
tldr/pages.zh/common/gnuplot.md

20 lines
524 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# gnuplot
> 一个可以以多种格式输出图形的绘图工具。
> 更多信息:<http://www.gnuplot.info/>。
- 启动交互式绘图命令行:
`gnuplot`
- 根据指定的图形定义文件绘制图形:
`gnuplot {{path/to/definition.plt}}`
- 在加载定义文件之前通过执行命令设置输出格式:
`gnuplot -e "{{set output "path/to/filename.png" size 1024,768}}" {{path/to/definition.plt}}`
- 在gnuplot退出后保持图形绘制预览窗口
`gnuplot --persist {{path/to/definition.plt}}`