forked from robotology/idyntree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getFrameIndex.m
24 lines (21 loc) · 954 Bytes
/
getFrameIndex.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function frameID = getFrameIndex(KinDynModel,frameName)
% GETFRAMEINDEX gets the index corresponding to a given frame name.
%
% This matlab function wraps a functionality of the iDyntree library.
% For further info see also: https://github.com/robotology/idyntree
%
% FORMAT: frameID = getFrameIndex(KinDynModel,frameName)
%
% INPUTS: - KinDynModel: a structure containing the loaded model and additional info.
% - frameName: a string specifying a valid frame name.
%
% OUTPUTS: - frameID: the ID associated to the given frame name.
%
% Author : Gabriele Nava ([email protected])
%
% SPDX-FileCopyrightText: Fondazione Istituto Italiano di Tecnologia (IIT)
% SPDX-License-Identifier: BSD-3-Clause
%% ------------Initialization----------------
% get the ID of the given frame
frameID = KinDynModel.kinDynComp.getFrameIndex(frameName);
end