comparison skewPart.m @ 707:0de70ec8bf60 feature/quantumTriangles

merge with feature/optim
author Ylva Rydin <ylva.rydin@telia.com>
date Fri, 10 Nov 2017 14:22:56 +0100
parents f8072bb8d1d1
children
comparison
equal deleted inserted replaced
696:7c16b5af8d98 707:0de70ec8bf60
1 % Returns the skew of A
2 function S = skewPart(A, tol)
3 S = 1/2*(A - A');
4 end