view gaussian.m @ 663:b45ec2b28cc2 feature/poroelastic

First implementation of elastic shear operator with free boundary BC.
author Martin Almquist <malmquist@stanford.edu>
date Thu, 14 Dec 2017 13:54:20 -0800
parents 705658c55229
children 6514c3b94721
line wrap: on
line source

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