安装之后,迫切需要运行一个程序来看看,首先要找到软件默认的使用路径:

输入 show loadpath命令就会显示默认查找的几个路径,

loadpath is

loadpath from GNUPLOT_LIB is "C:\Program Files (x86)\gnuplot\demo" "C:\Program Files (x86)\gnuplot\demo\games" "C:\Program Files (x86)\gnuplot\share"

gnuplotrc is read from share

再输入:pwd(Print Work Directory) 输出的是  当前的工作区

输出的路径为:   C:\Users\你的电脑的名字\Documents路径


因此将自己的数据文件放到documents路径下即可,放到loadpath的路径中也可以


将下面的内容复制到txt文件中并命名该文件为datafile.dat,

### 文件开始###

# 北京月平均降水量(mm)

#

# 月份降水量

# ==============

1 2 . 5

2 5 . 1

3 10 .2

4 25 .4

5 27 .9

6 71 .1

7 175.3

8 182.9

9 48 .3

10 17 .8

11 5 . 1

12 2 . 5

### 文件结束###

将该文件放到 "C:\Users\你的电脑的名字\Documents"目录下,输入plot ‘datafile.dat’就可以了,显示如下图

gnuplot使用1_html

此时显示的是点图,如果想显示线图,需要后面跟上参数:plot 'datafile.dat' w line,显示如下图

gnuplot使用1_txt文件_02