Created
March 5, 2012 18:11
-
-
Save janodev/1980044 to your computer and use it in GitHub Desktop.
O(n) performance types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Needs["PlotLegends`"] | |
Plot[{1, Log[n], n, n*Log[n], n^2, n!, 2^n}, {n, 0, 40}, | |
PlotRange -> {0, 200}, PlotLabel -> "O(n) Performance types", | |
PlotLegend -> {"1", "Log[n]", "n", "n*Log[n]", "n^2", "n!", "2^n"}, | |
LegendShadow -> None, LegendBorder -> None, | |
LegendPosition -> {0.9, -0.4}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment