Skip to content
Snippets Groups Projects

Resolve "quantity.Domain"

Merged Ferdinand Fischer requested to merge 14-quantity-domain into master
16 files
+ 2203
994
Compare changes
  • Side-by-side
  • Inline
Files
16
+ 3
1
@@ -6,13 +6,15 @@ classdef Parser < inputParser
@@ -6,13 +6,15 @@ classdef Parser < inputParser
methods
methods
function obj = Parser()
function obj = Parser(varargin)
obj = obj@inputParser();
obj = obj@inputParser();
% set default properties
% set default properties
obj.KeepUnmatched = true;
obj.KeepUnmatched = true;
obj.CaseSensitive = true;
obj.CaseSensitive = true;
obj.PartialMatching = false;
obj.PartialMatching = false;
 
 
end % Parser()
end % Parser()
function i = isDefault(obj, name)
function i = isDefault(obj, name)
Loading