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.

Script_1_Plots.m 426 B

3 dagen geleden
2 dagen geleden
2 dagen geleden
1234567891011121314
  1. % Define environment (functions, gradients etc...)
  2. GivenEnv
  3. %
  4. % We plot the function in the domain of x,y in [-3, 3].
  5. % We also plot the contour in order to get a sense of the min and maximum
  6. % points in the x-y plane
  7. %
  8. % 3d plot the function
  9. plot3dFun(fun, [-3, 3], [-3, 3], 100, title_fun, "figures/Plot_Function.png");
  10. % Plot isobaric lines
  11. plotContour(fun, [-3, 3], [-3, 3], 100, title_fun, "figures/Plot_Contour.png");