Function navtk::_dot

Function Documentation

Matrix navtk::_dot(const Matrix &a, const Matrix &b)

Returns the matrix product of a and b .

Don’t use this function directly. Use dot() instead. This function exists as an implementation detail: in particular, to prevent tensors.hpp from bringing in any particular set of linear algebra headers.

Parameters
  • a – The left matrix.

  • b – The right matrix.

Returns

The matrix (inner) product a *b.