Skip to content

Instantly share code, notes, and snippets.

@bvanderveen
Created February 9, 2015 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bvanderveen/e9bb224c3bf540bae018 to your computer and use it in GitHub Desktop.
Save bvanderveen/e9bb224c3bf540bae018 to your computer and use it in GitHub Desktop.
GNUPlot from CSV (Originally from JSBSim cannonball example)
set terminal png
set output "plot.png"
set title "Cannon ball"
set key autotitle columnhead
set xlabel "Time"
set datafile separator ','
plot "output.csv" u 1:62 w lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment