view skewPart.m @ 947:d1c13505182a feature/utux2D

Add missing newline at end of file
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 05 Dec 2018 16:02:45 +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