THMMY's "Optimization Techniques" course assignments.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
462 B

  1. %
  2. % Select the given region: [-1,3]
  3. a_0 = -1;
  4. b_0 = 3;
  5. % Setup the functions under test
  6. f_1 = @(x) (x-2)^2 + x*log(x+3);
  7. f_2 = @(x) exp(-2*x) + (x-2)^2;
  8. f_3 = @(x) exp(x)*(x^3 - 1) + (x-1)*sin(x);
  9. funs = {f_1, f_2, f_3};
  10. % Setup the function titles
  11. title_f1 = "$f_1(x) = (x - 2)^2 + x \cdot \ln(x + 3)$";
  12. title_f2 = "$f_2(x) = e^{-2x} + (x - 2)^2$";
  13. title_f3 = "$f_3(x) = e^x \cdot (x^3 - 1) + (x - 1) \cdot \sin(x)$";
  14. titles = [title_f1; title_f2; title_f3];