BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Modify the analog's unit and return a list of the updated analog channels.
[analogs, analogsInfo] = btkSetAnalogUnit(h, idx, newunit)
[analogs, analogsInfo] = btkSetAnalogUnit(h, label, newunit)
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. |
newunit | String with the new unit. |
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. |
btkSetAnalogUnit(h, idx, newunit)
modifies the unit of the analog channel specified by the index idx
. btkSetAnalogUnit(h, label, newunit)
modifies the unit of the analog channel specified by the label label
.