THMMY's "Optimization Techniques" course assignments.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

13 行
226 B

  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