view skewPart.m @ 1242:ff613067dec6 feature/dirac_discr

Merge heads
author Martin Almquist <malmquist@stanford.edu>
date Tue, 19 Nov 2019 17:04:32 -0800
parents f8072bb8d1d1
children
line wrap: on
line source

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