view gaussian.m @ 934:dd95470d4baf feature/utux2D

Change from opts to type in multiblock.setAllInterfaceTypes
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 04 Dec 2018 12:37:44 +0100
parents 705658c55229
children 6514c3b94721
line wrap: on
line source

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