view symmetricPart.m @ 1060:e40899094f20 feature/poroelastic

Elastic2dVariable: Clean up alpha in getBoundaryOperator. Add alpha1 and alpha2 as boundary operators.
author Martin Almquist <malmquist@stanford.edu>
date Sat, 26 Jan 2019 16:56:35 -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