MCPcopy Create free account
hub / github.com/Kitware/VTK / Determinant

Function Determinant

Common/Core/vtkMath.h:952–956  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

950 */
951 template <int SizeT, class LayoutT = vtkMatrixUtilities::Layout::Identity, class MatrixT>
952 static typename vtkMatrixUtilities::ScalarTypeExtractor<MatrixT>::value_type Determinant(
953 MatrixT&& M)
954 {
955 return vtkMathPrivate::Determinant<SizeT, LayoutT>::Compute(std::forward<MatrixT>(M));
956 }
957
958 /**
959 * Computes the inverse of input matrix M1 into M2.

Callers 3

RequestInformationMethod · 0.50
RunMethod · 0.50
ApplyScaledJacobianFunction · 0.50

Calls 1

ComputeFunction · 0.85

Tested by 1

RunMethod · 0.40