Conclusion

There's a lot more to gnuplot than what I was able to cover in this tutorial.

For example, you can do arithmetic on a column like this: using 1:(2*$2). The second column will be doubled in the plot.

plot '2.csv' using 1:2      with lines title 'Channel 1', \
	 '2.csv' using 1:(2*$2) with lines title 'Double Channel 1', \
     '2.csv' using 1:3      with lines title 'Channel 2'

7.1.png


Then there are inbuilt Trignometric and other Mathematical functions, and even userdefined functions are supported! But they lie outside the scope of this tutorial and the course, and will not be discussed here.

You are encouraged to further explore gnuplot by yourself.

If you'd like to learn another new thing, I really recommend the markdown tutorial here. Infact, the entire content of this website is written in Markdown.

Last Updated: 8/16/2018, 5:21:27 PM