Archive for the ‘References’ Category

Mathematica: Manipulate

Monday, March 28th, 2011
Manipulate[a, {a, b, c, d}]
  • a – variable
  • b – start value
  • c – end value
  • d – step amount
 

Algorithm Growth Rates

Monday, March 14th, 2011

This is a list of growth rates for a few function types. These are used in the analysis of algorithms.

Function       | Name
c Constant
log N Logarithmic
log2 N Log-squared
N Linear
N log N
N2 Quadratic
N3 Cubic
2N Exponential