view symmetricPart.m @ 802:e3d963997527 feature/poroelastic

Merge with feature/grids
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 26 Jul 2018 18:05:29 -0700
parents f8072bb8d1d1
children
line wrap: on
line source

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