view skewPart.m @ 670:52a9dedb9171 feature/poroelastic

Add 6th order to D2variable.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 22 Dec 2017 16:38:08 +0100
parents f8072bb8d1d1
children
line wrap: on
line source

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