Skip to content

Matrix Structure rm_matrix_t

Parameter description

ParameterTypeDescription
irowintNumber of rows of the matrix.
ilineintNumber of lines of the matrix.
dataList[float]Data of the matrix, size: 4×4 floats.

Constructor function

Python
rm_ctypes_wrap.rm_matrix_t.__init__(self, irow=4, iline=4, data=None)

Parameter description:

ParameterTypeDescription
irowint, optionalNumber of rows of the matrix, default: None.
ilineint, optionalNumber of lines of the matrix, default: None.
dataint, optionalData of the matrix, size: 4×4 floats, default: None.