Documentation help see also refers to the wrong element

2 views (last 30 days)
Hello,
I'm adding some documentations in my classes and I have a small problem. When I try to link another class with the "See also", it links to the property with the same name instead of to the class. I know that Matlab search first in the properties, then for a class, so I'm asking if there is a way to force the link for a class or force to ignore a property ?
Example :
classdef engine
%ENGINE Creates a engine object
%
% See also PERFORMANCEDATA. <-- Will refers to the property "PerformanceData" instead of the class "performanceData"
%
properties
PerformanceData = []; %Object
end
end
and
classdef performanceData
end
Thanks

Answers (0)

Categories

Find more on Software Development Tools in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!