view gaussian.m @ 615:68f9c16569fa feature/grids

Add class to handle animations in a smoother and more modular way
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 11 Oct 2017 16:01:02 +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