THMMY's "Optimization Techniques" course assignments.
You can not select more than 25 topics
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
|