view symmetricPart.m @ 622:0813d700a816 feature/grids

Remove whitespace
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 20 Oct 2017 18:43:26 +0200
parents f8072bb8d1d1
children
line wrap: on
line source

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