# 	plotting 3D graph from matrix file

# 	Example of matrix file (data.txt):
#	0	20	21	22	23	24	...
#	1.0	1	8	6	2	4	...
#	1.1	8	5	5	4	8	...
#	1.2	8	5	5	4	8	...
#	1.3	8	5	5	4	8	...
#	...						...

# commands to plot this file

splot 'data.txt' matrix nonuniform with lines t ''

set xlabel 'x'
set ylabel 'y'
set zlabel 'z'

set title 'Title of 3D graph'
