view skewPart.m @ 676:9926efb39330 feature/poroelastic

Clean up dilation BC code.
author Martin Almquist <malmquist@stanford.edu>
date Thu, 18 Jan 2018 14:36:59 -0800
parents f8072bb8d1d1
children
line wrap: on
line source

% Returns the skew of A
function S = skewPart(A, tol)
    S = 1/2*(A - A');
end