view toolbox/skewpart.m @ 3:d24a00dabdc2 draft

Added first test and Makefile after figuring out how to!!! Also removed fontconfig rubbish created by a bug in my GNU/linux system. Note: review E.B. Davies's paper "Approximate Diagonalization" for tricky diagonalization problems.
author Antonio Pino Robles <data.script93@gmail.com>
date Fri, 15 May 2015 20:24:25 +0200
parents 8f23314345f4
children
line wrap: on
line source

function S = skewpart(A)
%SKEWPART  Skew-symmetric (skew-Hermitian) part.
%          SKEWPART(A) is the skew-symmetric (skew-Hermitian) part of A,
%          (A - A')/2.
%          It is the nearest skew-symmetric (skew-Hermitian) matrix to A in
%          both the 2- and the Frobenius norms.

S = (A - A')./2;