Define matlab functions with input selected from a "list"

1 visualizzazione (ultimi 30 giorni)
Hi everyone,
Maybe the title dosen't explin my problem, so I'll provide an example. When I define a function with "classical" notation:
function output = myFnc(input)
end
I would like to obtain something like:
c = cvpartition(group,'KFold',k,'Stratify',stratifyOption)
Basically I want to choose a 'Method' from a list. When I call the function I would like to have
a = myFcn('Method', Gradient)
What is the code that allows me to do so?
Thank you :)

Risposte (1)

Steven Lord
Steven Lord il 9 Mag 2018
If I understand your description correctly, it sounds like you want to implement tab completion for your function. If you're using release R2018a, see this page in the documentation for instructions on how to create the file that tab completion will use for your function (or functions in a particular directory).

Categorie

Scopri di più su Startup and Shutdown 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!

Translated by