RSSAmplifier

Brian Wigginton · Aug 5, 2021

Plotting Big-O with gnuplot

0
Sign in to vote or save

This page cannot be shown here. You can still read it on the original site — the toolbar below keeps your place in the directory.

Use gnuplot command to run a plt file and ouput a png file. gnuplot bigo.plt # File: bigo.plt set title 'Big-O Complexity Chart' set output 'bigo.png' # output file name set term png # output as PNG set grid # show a grid set xlabel 'Elements' set ylabel 'Operations' set format xy '' # hide axis ranges set xrange [1:1000000000] set yrange [0:1000000000] set logscale xy # logarithmic scale for x…

Read on /posts/plotting-complexity-w-gnuplot/

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.