view skewPart.m @ 1055:b828e589d540 feature/poroelastic

Copy-paste LaplCurviNewCorner from laplace branch.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 25 Jan 2019 14:04:23 -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