view gaussian.m @ 1200:d9da4c1cdaa0 feature/poroelastic

Fix spelling mistake in comments.
author Martin Almquist <malmquist@stanford.edu>
date Thu, 22 Aug 2019 11:55:35 -0700
parents 6514c3b94721
children
line wrap: on
line source

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