resetoptions
재설정 옵션
설명
은 지정된 옵션을 디폴트 값으로 다시 재설정합니다.options2
= resetoptions(options
,optionname
)
팁
한 집합의 옵션만 설정하려면 options2
대신 options
를 출력 인수로 사용하십시오.
는 여러 옵션을 디폴트 값으로 재설정합니다.options2
= resetoptions(options
,multioptions
)
예제
옵션 한 개 재설정하기
디폴트가 아닌 설정을 가진 옵션을 만듭니다. MaxIterations
설정을 검토합니다.
options = optimoptions('fmincon','Algorithm','sqp','MaxIterations',2e4,... 'SpecifyObjectiveGradient',true); options.MaxIterations
ans = 20000
MaxIterations
옵션을 디폴트 값으로 재설정합니다.
options2 = resetoptions(options,'MaxIterations');
options2.MaxIterations
ans = 400
'sqp'
알고리즘에서 MaxIterations
옵션의 디폴트 값은 400입니다.
옵션 여러 개 재설정하기
디폴트가 아닌 설정을 가진 옵션을 만듭니다. MaxIterations
설정을 검토합니다.
options = optimoptions('fmincon','Algorithm','sqp','MaxIterations',2e4,... 'SpecifyObjectiveGradient',true); options.MaxIterations
ans = 20000
MaxIterations
및 Algorithm
옵션을 디폴트 값으로 재설정합니다. MaxIterations
설정을 검토합니다.
multiopts = {'MaxIterations','Algorithm'}; options2 = resetoptions(options,multiopts); options2.MaxIterations
ans = 1000
'interior-point'
알고리즘에서 MaxIterations
옵션의 디폴트 값은 1000입니다.
입력 인수
options
— 최적화 옵션
optimoptions
에 의해 생성된 객체
최적화 옵션으로, optimoptions
에 의해 생성된 객체로 지정됩니다.
예: optimoptions('fmincon','Algorithm','sqp','SpecifyObjectiveGradient',true)
optionname
— 옵션 이름
작은따옴표로 둘러싼 이름
옵션 이름으로, 작은따옴표로 둘러싼 이름으로 지정됩니다. 각 솔버에 허용되는 옵션 이름은 함수 도움말 페이지의 options
섹션에 나와 있습니다.
예: 'Algorithm'
데이터형: char
multioptions
— 다중 옵션
이름으로 구성된 셀형 배열
다중 옵션으로, 이름으로 구성된 셀형 배열로 지정됩니다.
예: {'Algorithm','OptimalityTolerance'}
데이터형: cell
출력 인수
options2
— 최적화 옵션
optimoptions
에 의해 생성된 객체
최적화 옵션으로, optimoptions
에 의해 생성된 객체로 반환됩니다.
버전 내역
R2016a에 개발됨
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)