to_skew_symmetric Function

public pure function to_skew_symmetric(x) result(rst)

Converts a 3-element vector to a 3-by-3 skew-symmetric matrix. A skew-symmetric matrix is defined as follows.

Arguments

Type IntentOptional Attributes Name
real(kind=real64), intent(in) :: x(3)

The vector.

Return Value real(kind=real64), (3,3)

The resulting skew-symmetric matrix.


Contents