view gaussian.m @ 604:082c7bf3192e feature/grids

Remove unused output
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 04 Oct 2017 13:41:58 +0200
parents 705658c55229
children 6514c3b94721
line wrap: on
line source

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