THMMY's "Optimization Techniques" course assignments.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

gamma_fixed.m 226 B

20 saat önce
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