Gemm
OpenLvVision_OpenCv.lvlib:Gemm.vim
Performs generalized matrix multiplication.
The function gemm performs generalized matrix multiplication:
- Generalized Matrix Multiplication:$ \texttt{dst} = \texttt{alpha} \cdot \texttt{src1} \cdot \texttt{src2} + \texttt{beta} \cdot \texttt{src3} $
Where op(X) is X or X^T (transpose of X), depending on the flags:
GEMM_1_T: Transposesrc1GEMM_2_T: Transposesrc2GEMM_3_T: Transposesrc3
The function can be replaced with a matrix expression:
dst = alpha * src1 * src2 + beta * src3; // (or using .t() for transposition)
For detailed information, please refer to the OpenCV documentation

| error in error in can accept error information wired from VIs previously called. Use this information to decide if any functionality should be bypassed in the event of errors from other VIs. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| status status is TRUE (X) if an error occurred or FALSE (checkmark) to indicate a warning or that no error occurred. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| code |
| source source describes the origin of the error or warning. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| Src1 in first multiplied input matrix that could be real(CV_32FC1, CV_64FC1) or complex(CV_32FC2, CV_64FC2). |
| Src2 in second multiplied input matrix of the same type as src1. |
| Dst in output matrix; it has the proper size and the same type as input matrices. |
| Src3 in third optional delta matrix added to the matrix product; it should have the same type as src1 and src2. |
| Alpha |
| Beta weight of src3. |
| GemmFlags operation flags: GEMM_1_T: transposes src1 GEMM_2_T: transposes src2 GEMM_3_T: transposes src3 |
| error out error in can accept error information wired from VIs previously called. Use this information to decide if any functionality should be bypassed in the event of errors from other VIs. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| status status is TRUE (X) if an error occurred or FALSE (checkmark) to indicate a warning or that no error occurred. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| code |
| source source describes the origin of the error or warning. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| Dst out output matrix; it has the proper size and the same type as input matrices. |










