BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Set a metadata's format.
md = btkSetMetaDataFormat(h, idx, newformat)
md = btkSetMetaDataFormat(h, idx, subidx, newformat)
md = btkSetMetaDataFormat(h, idx, subidx, ..., newformat)
md = btkSetMetaDataFormat(h, label, newformat)
md = btkSetMetaDataFormat(h, label, sublabel, newformat)
md = btkSetMetaDataFormat(h, label, sublabel, ..., newformat)
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. |
newformat | String with the new format (see detailed description for the available format). |
md | Structure with the same format than the function btkGetMetaData. |
btkSetMetaDataFormat(h, idx, newformat)
sets the format of the metadata with the index idx
contained in the root. btkSetMetaDataFormat(h, idx, subidx, newformat)
sets the format of the metadata with the index subidx
contained in the metadata with the index idx
. btkSetMetaDataFormat(h, idx, subidx, ..., newformat)
sets the format of any metadata specified by the gives indices. btkSetMetaDataFormat(h, label, newformat)
sets the format of the metadata with the label label
contained in the root. btkSetMetaDataFormat(h, label, sublabel, newformat)
sets the format of the metadata with the label sublabel
contained in the metadata with the label label
. btkSetMetaDataFormat(h, label, sublabel, ..., newformat)
sets the format of any metadata specified by the given labels.