-
Notifications
You must be signed in to change notification settings - Fork 767
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #965 from borglab/wrap/update
Wrap Update
- Loading branch information
Showing
25 changed files
with
306 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
./* | ||
!.gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
function varargout = DefaultFuncInt(varargin) | ||
if length(varargin) == 2 && isa(varargin{1},'numeric') && isa(varargin{2},'numeric') | ||
functions_wrapper(8, varargin{:}); | ||
elseif length(varargin) == 1 && isa(varargin{1},'numeric') | ||
functions_wrapper(9, varargin{:}); | ||
elseif length(varargin) == 0 | ||
functions_wrapper(10, varargin{:}); | ||
else | ||
error('Arguments do not match any overload of function DefaultFuncInt'); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
function varargout = DefaultFuncObj(varargin) | ||
if length(varargin) == 1 && isa(varargin{1},'gtsam.KeyFormatter') | ||
functions_wrapper(10, varargin{:}); | ||
functions_wrapper(14, varargin{:}); | ||
elseif length(varargin) == 0 | ||
functions_wrapper(15, varargin{:}); | ||
else | ||
error('Arguments do not match any overload of function DefaultFuncObj'); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
function varargout = DefaultFuncString(varargin) | ||
if length(varargin) == 2 && isa(varargin{1},'char') && isa(varargin{2},'char') | ||
functions_wrapper(9, varargin{:}); | ||
functions_wrapper(11, varargin{:}); | ||
elseif length(varargin) == 1 && isa(varargin{1},'char') | ||
functions_wrapper(12, varargin{:}); | ||
elseif length(varargin) == 0 | ||
functions_wrapper(13, varargin{:}); | ||
else | ||
error('Arguments do not match any overload of function DefaultFuncString'); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
function varargout = DefaultFuncVector(varargin) | ||
if length(varargin) == 2 && isa(varargin{1},'std.vectornumeric') && isa(varargin{2},'std.vectorchar') | ||
functions_wrapper(12, varargin{:}); | ||
functions_wrapper(20, varargin{:}); | ||
elseif length(varargin) == 1 && isa(varargin{1},'std.vectornumeric') | ||
functions_wrapper(21, varargin{:}); | ||
elseif length(varargin) == 0 | ||
functions_wrapper(22, varargin{:}); | ||
else | ||
error('Arguments do not match any overload of function DefaultFuncVector'); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
function varargout = DefaultFuncZero(varargin) | ||
if length(varargin) == 5 && isa(varargin{1},'numeric') && isa(varargin{2},'numeric') && isa(varargin{3},'double') && isa(varargin{4},'logical') && isa(varargin{5},'logical') | ||
functions_wrapper(11, varargin{:}); | ||
if length(varargin) == 5 && isa(varargin{1},'numeric') && isa(varargin{2},'numeric') && isa(varargin{3},'double') && isa(varargin{4},'numeric') && isa(varargin{5},'logical') | ||
functions_wrapper(16, varargin{:}); | ||
elseif length(varargin) == 4 && isa(varargin{1},'numeric') && isa(varargin{2},'numeric') && isa(varargin{3},'double') && isa(varargin{4},'numeric') | ||
functions_wrapper(17, varargin{:}); | ||
elseif length(varargin) == 3 && isa(varargin{1},'numeric') && isa(varargin{2},'numeric') && isa(varargin{3},'double') | ||
functions_wrapper(18, varargin{:}); | ||
elseif length(varargin) == 2 && isa(varargin{1},'numeric') && isa(varargin{2},'numeric') | ||
functions_wrapper(19, varargin{:}); | ||
else | ||
error('Arguments do not match any overload of function DefaultFuncZero'); | ||
end |
Oops, something went wrong.