Mercurial > repos > public > sbplib
view rickerWavelet.m @ 1039:a8ee5eca0e6c feature/burgers1d
Allow for the residual normalization function to return a vector. Also change the default normalization from normalizing on norm(u-mean(u),inf) to norm(u/2), since this proved to be better for 1d burgers
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 18 Jan 2019 09:06:20 +0100 |
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