Many methods of Device and IResponseHandler classes take arrays (matrices) of floating point values as arguments.
In cyberatom module they are not of standard Python tuples or lists, but of special type from ctype module: ctypes.LP_C_float.
When such object is passed from the cyberatom library (e.g. to a IResponse derivced object), elements of the array can be retrievd using typicall [] operator.
For example, when in onFilterProc method:
For example to create and pass 7-elements array to Device.setFilterProcMatrix() method, that's how it can be achieved: