Base class representing common functionality between Wireless and Inertial data points
Gets the data value as a Vector object
The data value as a Vector object
Error_BadDataType: The type in which the value was stored could not be converted to Vector
Gets the data value as a Matrix object
The data value as a Matrix object
Error_BadDataType: The type in which the value was stored could not be converted to a Matrix
Gets the data value as a Timestamp object
The data value as a Timestamp object
Error_BadDataType: The type in which the value was stored could not be converted to a Timestamp
Gets the data value as a Bytes object (vector of uint8).
The data value as a Bytes object.
Error_BadDataType: The type in which the value was stored could not be converted to a Bytes object.
Gets the data value as a StructuralHealth object.
The data value as a StructuralHealth object.
Error_BadDataType: The type in which the value was stored could not be converted to a StructuralHealth object.
Gets the data value as an RfSweep.
The data value as an RfSweep.
Error_BadDataType: The type in which the value was stored could not be converted to an RfSweep.
Gets the data value as a string
A string representing the data value. This will be created using the value's current valueType. - A value stored as a float will return a string as so: "1.2345". - A value stored as a Vector will return a string as so: "[1.2,3.4,5.6]" - A value stored as a Matrix will return a string as so: "[[0,0.1,0.2],[1,1.1,1.2],[2,2.1,2.2]]" - A value stored as Bytes will return a string as so: "0x01 0x02 0x03 0x0a 0xab"
Error_BadDataType: The type in which the value was stored could not be converted to a string.