Show pageOld revisionsBacklinksFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Gnuplot ====== ===== Installation ===== <codeprism> M-x package-install RET gnuplot RET </codeprism> ===== Examples ===== <codeprism> # Set the title for the graph set title "Plot of functions" # Label the axes set xlabel "x" set ylabel "f(x)" # Set the range for x (you can adjust the range as needed) set xrange [0:5000] set yrange [0:5000] # Plot the functions plot x title "x", \ 15 + 0.8*x title "15 + 0.8 * x", \ 240 + 0.6*x title "240 + 0.6 * x" </codeprism> emacs/gnuplot.txt Last modified: 2025/09/17 03:20by lingao