Navigation: Language Reference > Functions > Matrix >
y = antisym(A);
Returns an anti-symmetric matrix. This function is equal to:
y = (A - transpose(A))/2;
A = [1,2;3,4];
Y = antisym(A);
A must be a square matrix. Y and A must be of the same size.