How I can avoid alphabetical sorting of classdef property list in MATLAB doc?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Consider the following simple calssdef:
classdef MSD
% Constructs a mass-spring-damper system.
properties
% object mass in kg.
mass double
% spring stiffness.
stiffness double
% friction coefficient.
damping double
end
methods
% Constructor
function obj = MSD(mass, varargin)
p = inputParser;
p.addRequired('mass');
p.addParameter('stiffness', 0);
p.addParameter('damping', 0);
p.parse(mass, varargin{:});
obj.mass = p.Results.mass;
obj.stiffness = p.Results.stiffness;
obj.damping = p.Results.damping;
end
end
end
The order of property items in Command Window is the same as that in the code i.e.
- mass,
- siffness,
- damping.
>> mass = 10;
>> model = MSD(mass, 'stiffness', 1, 'damping', 2)
model =
MSD with properties:
mass: 10
stiffness: 1
damping: 2
Everything is OK so far. But in MATLAB doc, the property items are sorted in alphabetic order!!!
Is there any way to avoid alphabetic sorting of property items in MATLAB doc?
doc MSD
![Untiatled.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/219014/Untiatled.png)
0 Commenti
Risposte (1)
Zenin Easa Panthakkalakath
il 14 Mag 2019
Hi Saeid,
Perhaps the following page on displaying custom documentation may be what you are looking for.
Regards,
Zenin
0 Commenti
Vedere anche
Categorie
Scopri di più su Software Development Tools in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!