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.

gamma_fixed.m 226 B

15 hours ago
123456789101112
  1. function [gamma] = gamma_fixed(~, ~, ~)
  2. % Return a fixed step
  3. %
  4. % This is for completion and code symmetry.
  5. %
  6. global gamma_fixed_step
  7. % Perform line search
  8. gamma = gamma_fixed_step;
  9. end