I have the following class, with a method that hides (or shadows) a builtin function. I want the documentation to contain a "See Also" section, that links to the builtin function that is hidden.
classdef CatHelper
%CATHELPER Makes implementing vertcat/horzcat easy on a custom class
%
% See Also: cat
methods (Abstract)
obj = cat(obj, ndim, varargin);
end
end
Unfortunately, the "see also" link just tries to give help on the undocumented abstract method CatHelper/cat
.
How do I specify that I want the link to go to the builtin cat
function?