view symmetricPart.m @ 683:50e77b15d841 feature/poroelastic

Bugfix in spdiagsVariablePeriodic
author Martin Almquist <malmquist@stanford.edu>
date Thu, 08 Feb 2018 16:02:20 -0800
parents f8072bb8d1d1
children
line wrap: on
line source

% Returns the symmetric of A
function S = symmetricPart(A, tol)
    S = 1/2*(A + A');
end