TDenseMatrix::MultiplyAB

Return C = A x B, the product of A and B where each element of C is Cij = DotProduct(A.GetRow(i), B.GetColumns(j)).

Windows
MacOS
Linux

References

Module

Chaos

Header

/Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/DenseMatrix.h

Include

#include "Chaos/DenseMatrix.h"

Syntax

template<int32 T_EA, int32 T_EB>
static TDenseMatrix< MaxElements > MultiplyAB
(
    const TDenseMatrix< T_EA > & A,
    const TDenseMatrix< T_EB > & B
)

Remarks

Return C = A x B, the product of A and B where each element of C is Cij = DotProduct(A.GetRow(i), B.GetColumns(j)). /see MultiplyAtB, MultiplyABt, MultipltAtBt.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss