loadOptions

버전 1.0.0.0 (1.86 KB) 작성자: Nathaniel Brahms
Tool for implementing option name/value pairs in function arguments
다운로드 수: 922
업데이트 2007/12/4

라이선스 없음

Often one desires to write a function that takes a large number of optional arguments. One way to do this is to allow for an arbitrary number of option name-value pairs in the function argument:

function r = f(a,b,c,name1,value1,...)

This method has the advantages of:

1) Allowing those using the function to specify options without needing to check the position of the option in a long list of arguments.

2) Allowing for options to have default values that need not be specified each function call.

3) Eliminates the need to deal with empty values passed for unspecified options.

loadOptions is an easy-to-use function designed to aide in writing functions taking option name/value pairs. It converts the list of name/value pairs into an easily usable options struct (a la optimset). It allows for option defaults.

And, unlike typical MATLAB syntax, the user may specify data types for each option value, or leave data types untyped, or have some values typed and others untyped.

Please see the help text / example for details on how to use loadOptions when writing a function.

loadOptions was written and tested in R2007b, but it is rather basic and should work with any release that supports varargin and class().

인용 양식

Nathaniel Brahms (2026). loadOptions (https://kr.mathworks.com/matlabcentral/fileexchange/17882-loadoptions), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2007b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Argument Definitions에 대해 자세히 알아보기
도움

도움 준 파일: parseParameters

버전 게시됨 릴리스 정보
1.0.0.0