Skip to content

Instantly share code, notes, and snippets.

@YujiSODE
Last active June 21, 2022 10:35
Show Gist options
  • Save YujiSODE/972e202c0cacf30d11faca70287aac96 to your computer and use it in GitHub Desktop.
Save YujiSODE/972e202c0cacf30d11faca70287aac96 to your computer and use it in GitHub Desktop.
Memo: gnuplot_savePng_sample
#gnuplot_savePng_sample.gp
#output png format in 2000x2000 px
set terminal png size 2000,2000
set output 'gnuplot_savePng_sample.png'
#
#plot sample: y=sin(x)
f(x)=sin(x)
plot f(x)
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment