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 Exchange에서 Startup 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