view rickerWavelet.m @ 1141:91058813b6e7 feature/laplace_curvilinear_test

Multiply by 2 in VirtaMin so that scheme is actually provably stable.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 21 Jun 2019 17:28:33 +0200
parents 905612b7f3d4
children
line wrap: on
line source

function y = rickerWavelet(x, x0, A)
    y = (1-2*pi^2*A^2*(x-x0).^2).*exp(-pi^2*A^2*(x-x0).^2);
end