view gaussian.m @ 1024:81d02e2d5c23 feature/advectionRV

Remove obsolete scheme AdvectionRV2d
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Mon, 07 Jan 2019 13:12:10 +0100
parents 6514c3b94721
children
line wrap: on
line source

function z = gaussian(x,x0,d)
    z = exp(-sum((x-x0).^2,2)/d^2);
end