Matlab 7.5 (2007b) Calling superclass function in overloaded subclass

5 Ansichten (letzte 30 Tage)
Reza Housseini
Reza Housseini am 10 Mär. 2016
When I call
p = inputParser2;
addRequired(p, 'A');
in Matlab 7.5 (2007b), with
classdef inputParser2 < inputParser
methods
function addRequired(obj, argname, varargin)
addRequired@inputParser(obj, argname);
end
end
end
I get the error message
??? Error using ==> mcos_parent_function_
addRequired is not a method of base class inputParser.
Error in ==> inputParser2>inputParser2.addRequired at 5
addRequired@inputParser(obj, argname);
But addRequired is clearly a method of class inputParser?

Antworten (0)

Kategorien

Mehr zu Argument Definitions finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by