BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Set one metadata's value.
md = btkSetMetaDataValue(h, idx, index, newvalue)
md = btkSetMetaDataValue(h, idx, subidx, index, newvalue)
md = btkSetMetaDataValue(h, idx, subidx, ..., index, newvalue)
md = btkSetMetaDataValue(h, label, index, newvalue)
md = btkSetMetaDataValue(h, label, sublabel, index, newvalue)
md = btkSetMetaDataValue(h, label, sublabel, ..., index, newvalue)
h | Handle pointing to a C++ btk::Acquisition object. |
idx | Integer specifying the index of a metadata. |
subidx | Integer specifying the index of a metadata. |
label | String specifying the label of a metadata. |
sublabel | String specifying the label of a metadata. |
... | Others integers and/or strings to select the metadata to remove. |
index | Integer with the index of the value to modify. |
newvalue | New value (depending the metadata, it can be a real or a string). |
md | Structure with the same format than the function btkGetMetaData. |
btkSetMetaDataValue(h, idx, index, newvalue)
sets the value at the index index
for the metadata with the index idx
contained in the root.btkSetMetaDataValue(h, idx, subidx, index, newvalue)
sets the value at the index index
for the metadata with the index subidx
contained in the metadata with the index idx
.btkSetMetaDataValue(h, idx, subidx, ..., index, newvalue)
sets the value at the index index
for any metadata specified by the gives indices.btkSetMetaDataValue(h, label, index, newvalue)
sets the value at the index index
for the metadata with the label label
contained in the root.btkSetMetaDataValue(h, label, sublabel, index, newvalue)
sets the value at the index index
for the metadata with the label sublabel
contained in the metadata with the label label
.btkSetMetaDataValue(h, label, sublabel, ..., index, newvalue)
sets the value at the index index
for any metadata specified by the given labels.