trivial and never used

even the more commoly used fucntions for 3x3 matrices are not all in use
This commit is contained in:
Martin Diehl 2021-07-26 10:22:53 +02:00
parent 59d09d708e
commit e56f2e09a4
1 changed files with 0 additions and 13 deletions

View File

@ -545,19 +545,6 @@ pure function math_symmetric33(m)
end function math_symmetric33
!--------------------------------------------------------------------------------------------------
!> @brief symmetrize a 6x6 matrix
!--------------------------------------------------------------------------------------------------
pure function math_symmetric66(m)
real(pReal), dimension(6,6) :: math_symmetric66
real(pReal), dimension(6,6), intent(in) :: m
math_symmetric66 = 0.5_pReal * (m + transpose(m))
end function math_symmetric66
!--------------------------------------------------------------------------------------------------
!> @brief skew part of a 3x3 matrix
!--------------------------------------------------------------------------------------------------