BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Modify analog's scale and return updated analogs.
[analogs, analogsInfo] = btkSetAnalogScale(h, idx, newscale)
[analogs, analogsInfo] = btkSetAnalogScale(h, label, newscale)
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. |
newscale | Real with the new scale factor to convert between numerical to analog value. |
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. |
btkSetAnalogScale(h, idx, newscale)
modifies the scale factor of the analog channel specified by the index idx
. btkSetAnalogScale(h, label, newscale)
modifies the scale factor of the analog channel specified by the label label
.