How to implement function hints in your code
49 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
D. Plotnick
le 1 Mai 2017
Commenté : Travis Bemrose
le 6 Mar 2020
I have seen that this has been asked previously, but never answered, and I want to know if this should go in as a feature request or if the capability is just not obvious.
When one starts typing e.g. 'plot(' and then waits, a series of suggested completions pops up. If I try this on my own code, it simply bases the suggestion on the top line. An abstract MWE example:
function out = foo(in, varargin)
p = inputParser;
addParameter(p,'mult',2)
parse(p,varargin{:})
out = in*p.Results.mult;
end
The function hint for this is 'foo(in,...)'.
Now, if I have a large number of possible inputs (similar to plot), I instead want the function hint to display some custom combinations of possible inputs as opposed to the single line based on the function definition. Preferably this would be based directly off of the comment header in the function file, although I could see it using an external file as well. This would be extremely helpful for building toolkits for other users.
Is this now possible? If not, I will submit it as a feature request.
Cheers, -Dan
1 commentaire
Rik
le 1 Mai 2017
This is indeed an interesting question. (this comment is mostly to get in on my watch list)
Réponse acceptée
Kevin Gleason
le 4 Mai 2017
As of MATLAB R2017a, this feature is not available.
I have submitted a feature request on your behalf. The development team is aware of the issue and may consider adding it in a future release.
6 commentaires
breathi
le 2 Jan 2020
Jan/Steven,
is there now a solution (maybe even with functionSignatures) for what Jan mentioned?
See also my question with point 2: https://de.mathworks.com/matlabcentral/answers/495677-how-to-generate-the-custom-help-box-for-a-custom-function-more-help?s_tid=es_ans_avr_que_view
Regards
Travis Bemrose
le 6 Mar 2020
Is there an update on this? Still looking for a solution:
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Historical Contests dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!