Searched full:matrix (Results 1 – 5 of 5) sorted by relevance
69 * @defgroup groupMatrix Matrix Functions71 * This set of functions provides basic matrix math operations.72 * The functions operate on matrix data structures. For example,74 * definition for the floating-point matrix structure is shown79 * uint16_t numRows; // number of rows of the matrix.80 * uint16_t numCols; // number of columns of the matrix.81 * float32_t *pData; // points to the data of the matrix.86 * The structure specifies the size of the matrix and then points to89 * matrix element (i, j) is stored at:95 * There is an associated initialization function for each type of matrix[all …]
54 * - Matrix functions169 * @defgroup groupMatrix Matrix Functions171 * This set of functions provides basic matrix math operations.172 * The functions operate on matrix data structures. For example,174 * definition for the floating-point matrix structure is shown179 * uint16_t numRows; // number of rows of the matrix.180 * uint16_t numCols; // number of columns of the matrix.181 * float32_t *pData; // points to the data of the matrix.186 * The structure specifies the size of the matrix and then points to189 * matrix element (i, j) is stored at:[all …]
34 matrix:
114 * This inv_shift_rows also implements the matrix flip required for
144 * This shift_rows also implements the matrix flip required for mix_columns, but