BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Modify analog's gain and return updated analogs.
[analogs, analogsInfo] = btkSetAnalogGain(h, idx, newgain)
[analogs, analogsInfo] = btkSetAnalogGain(h, label, newgain)
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. |
newgain | Integer wit the new gain (see the detailed description to know the possible gain). |
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. |
btkSetAnalogGain(h, idx, newgain)
modifies the gain of the analog channel specified by the index idx
. btkSetAnalogGain(h, label, newgain)
modifies the gain of the analog channel specified by the label label
.