view skewPart.m @ 744:94bd0f3293c8 feature/grids

SBPInTimeSecondOrderForm: Scale the system acording to C by default
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 28 Mar 2018 12:47:53 +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