view gaussian.m @ 1323:3f4e011193f0 feature/laplace1d_variable

First implementation of Laplace1dVariable. Passes symmetry and definiteness tests.
author Martin Almquist <malmquist@stanford.edu>
date Sun, 11 Apr 2021 21:10:23 +0200
parents 6514c3b94721
children
line wrap: on
line source

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