This is the latest (main) BeagleBoard documentation. If you are looking for stable releases, use the drop-down menu on the bottom-left and select the desired version.

Typedef rc_matrix_t

Typedef Documentation

typedef struct rc_matrix_t rc_matrix_t

Struct containing the state of a matrix and a pointer to dynamically allocated memory to hold its contents.

Set and read values directly with this code:

matrix.d[row][col] = new_value; // set value in the matrix
value = matrix.d[row][col];     // get value from the matrix