view skewPart.m @ 611:5a7f7f206594 feature/grids

Remove diffSymfun, matlab already does this
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 09 Oct 2017 10:51:48 +0200
parents f8072bb8d1d1
children
line wrap: on
line source

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