BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Modify analog's offset and return updated analogs.
[analogs, analogsInfo] = btkSetAnalogOffset(h, idx, newoffset)
[analogs, analogsInfo] = btkSetAnalogOffset(h, label, newoffset)
h | Handle pointing to a C++ btk::Acquisition object. |
idx | Integer containing the index of the analog channel to modify. |
label | String containing the label of the analog channel to modify. |
newoffset | Integer with the new numerical offset. |
analogs | Updated list of analog channels. Its format is the same than using the function btkGetAnalogs. |
analogsInfo | Updated informations related to the analog channels. Its format is the same than using the function btkGetAnalogs. |
btkSetAnalogOffset(h, idx, newoffset)
modifies the offset of the analog channel specified by the index idx
. btkSetAnalogOffset(h, label, newoffset)
modifies the offset of the analog channel specified by the label label
.