Define matlab functions with input selected from a "list"

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 :)

回答 (1 件)

Steven Lord
Steven Lord 2018 年 5 月 9 日

0 投票

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).

カテゴリ

ヘルプ センター および File ExchangeStartup and Shutdown についてさらに検索

質問済み:

2018 年 5 月 9 日

回答済み:

2018 年 5 月 9 日

Community Treasure Hunt

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

Start Hunting!

Translated by