MathUtilities 1.1.15
Common math functions shared across compiled apps at NML-NHP.
|
Functions for linear algebra operations. More...
Functions | |
void | matrixMultiply (double *B, double *A, double *x, size_t N, size_t M, size_t k) |
Perform matrix multiplication: B = A * x. | |
Functions for linear algebra operations.
void matrixMultiply | ( | double * | B, |
double * | A, | ||
double * | x, | ||
size_t | N, | ||
size_t | M, | ||
size_t | k ) |
Perform matrix multiplication: B = A * x.
B | Pointer to the result matrix B. |
A | Pointer to the matrix A (N rows by M columns). |
x | Pointer to the matrix x (M rows by k columns). |
N | Number of rows in matrix A. |
M | Number of columns in matrix A (and rows in matrix x). |
k | Number of columns in matrix x. |