THMMY's "Optimization Techniques" course assignments.
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- function [gamma] = gamma_fixed(~, ~, ~)
- % Return a fixed step
- %
- % This is for completion and code symmetry.
- %
-
- global gamma_fixed_step
-
- % Perform line search
- gamma = gamma_fixed_step;
-
- end
|