view skewPart.m @ 747:c3e89f9b2af7 feature/grids

Fix bug that fail tests and correct a typo
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 11 Apr 2018 09:14:54 +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