|
Inner
Inner product of two matrices.
matrix matrix::Inner(
|
Parameters
b
[in] Matrix.
Return Value
Matrix.
Note
The inner product for two vectors is the dot product of the two vectors vector::Dot().
A simple algorithm for the inner product of two matrices in MQL5:
bool MatrixInner(matrix& c, const matrix& a, const matrix& b)
|
MQL5 example:
matrix a={{0,1,2},{3,4,5}};
|
Python example:
import numpy as np
|