Skip to content

Files

Latest commit

f163104 · Dec 29, 2017

History

History
21 lines (15 loc) · 441 Bytes

inverse.md

File metadata and controls

21 lines (15 loc) · 441 Bytes

Inverse

Description: Inverse of a positive definite rank 2 Tensor (Determinant > 0). Optional Argument: Determinant

Property Value
Result Tensor-valued function
Data Types Tensor2, Tensor2s

Example

type(Tensor2)  :: C, invC
! type(Tensor2s) :: C, invC
real(kind=8)   :: detC

invC = inv(C)

detC = det(C)
invC = inv(C, detC)