Skip to content

Instantly share code, notes, and snippets.

@sherbondy
Created January 3, 2015 03:09
Show Gist options
  • Save sherbondy/c23914b27c59273d3660 to your computer and use it in GitHub Desktop.
Save sherbondy/c23914b27c59273d3660 to your computer and use it in GitHub Desktop.
Gaussian Pyramid
function gaussianpyramid(A, levels)
pyramid = ()
Ns = A
for n = 1:levels
pyramid = tuple(pyramid..., Ns)
Ns = impyramid(Ns)
end
return pyramid
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment