-
Notifications
You must be signed in to change notification settings - Fork 13
Updates to Matlab wrapper #179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 8 commits
fd5acb1
509d9d9
2a81d92
055fee3
8534beb
30d2465
227e0c6
dcc2d15
f195602
86447d1
3df0c29
cb1fcdf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| function varargout = EliminateDiscrete(varargin) | ||
| if length(varargin) == 2 && isa(varargin{1},'gtsam.DiscreteFactorGraph') && isa(varargin{2},'gtsam.Ordering') | ||
| [ varargout{1} varargout{2} ] = functions_wrapper(25, varargin{:}); | ||
| else | ||
| error('Arguments do not match any overload of function EliminateDiscrete'); | ||
| end | ||
| end |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| function varargout = FindKarcherMeanPoint2(varargin) | ||
| if length(varargin) == 1 && isa(varargin{1},'std.vectorgtsam::Point2') | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not correct, but this is a drawback of the Mex C API since there is no This is an issue in other existing classes as well (such as |
||
| varargout{1} = functions_wrapper(28, varargin{:}); | ||
| else | ||
| error('Arguments do not match any overload of function FindKarcherMeanPoint2'); | ||
| end | ||
| end | ||
|
varunagrawal marked this conversation as resolved.
Outdated
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| function varargout = FindKarcherMeanPoint3(varargin) | ||
| if length(varargin) == 1 && isa(varargin{1},'std.vectorgtsam::Point3') | ||
| varargout{1} = functions_wrapper(28, varargin{:}); | ||
| else | ||
| error('Arguments do not match any overload of function FindKarcherMeanPoint3'); | ||
| end | ||
| end |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| function varargout = FindKarcherMeanPose2(varargin) | ||
| if length(varargin) == 1 && isa(varargin{1},'std.vectorgtsam::Pose2') | ||
| varargout{1} = functions_wrapper(30, varargin{:}); | ||
| else | ||
| error('Arguments do not match any overload of function FindKarcherMeanPose2'); | ||
| end | ||
| end | ||
|
varunagrawal marked this conversation as resolved.
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| function varargout = FindKarcherMeanPose3(varargin) | ||
| if length(varargin) == 1 && isa(varargin{1},'std.vectorgtsam::Pose3') | ||
| varargout{1} = functions_wrapper(31, varargin{:}); | ||
| else | ||
| error('Arguments do not match any overload of function FindKarcherMeanPose3'); | ||
| end | ||
| end |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| function varargout = FindKarcherMeanRot2(varargin) | ||
| if length(varargin) == 1 && isa(varargin{1},'std.vectorgtsam::Rot2') | ||
| varargout{1} = functions_wrapper(29, varargin{:}); | ||
| else | ||
| error('Arguments do not match any overload of function FindKarcherMeanRot2'); | ||
| end | ||
| end | ||
|
varunagrawal marked this conversation as resolved.
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| function varargout = FindKarcherMeanRot3(varargin) | ||
| if length(varargin) == 1 && isa(varargin{1},'std.vectorgtsam::Rot3') | ||
| varargout{1} = functions_wrapper(31, varargin{:}); | ||
| else | ||
| error('Arguments do not match any overload of function FindKarcherMeanRot3'); | ||
| end | ||
| end | ||
|
varunagrawal marked this conversation as resolved.
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| function varargout = FindKarcherMeanSO3(varargin) | ||
| if length(varargin) == 1 && isa(varargin{1},'std.vectorgtsam::SO3') | ||
| varargout{1} = functions_wrapper(29, varargin{:}); | ||
| else | ||
| error('Arguments do not match any overload of function FindKarcherMeanSO3'); | ||
| end | ||
| end |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| function varargout = FindKarcherMeanSO4(varargin) | ||
| if length(varargin) == 1 && isa(varargin{1},'std.vectorgtsam::SO4') | ||
| varargout{1} = functions_wrapper(30, varargin{:}); | ||
| else | ||
| error('Arguments do not match any overload of function FindKarcherMeanSO4'); | ||
| end | ||
| end |
Uh oh!
There was an error while loading. Please reload this page.