Indusmic Private Limited

Jul 19, 20211 min

Three hump camel function

Updated: Aug 4, 2021

Mathematical Definition

Input Domain

The function is usually evaluated on the hypercube xi ∈ [-5, 5], for all i = 1, 2.

Global Minima

f(x*)=0, at x* =(0, 0).

Description

  • The function is continuous.

  • The function is not convex.

  • The function is defined on 2-dimensional space.

  • The function is multimodal.

  • The function is differentiable.

  • The function is non-separable.

Python Implementation

% Please forward any comments or bug reports in chat
 
Copyright 2021. INDUSMIC PRIVATE LIMITED.THERE IS NO WARRANTY, EXPRESS OR IMPLIED. WE DO NOT ASSUME ANY LIABILITY FOR THE USE OF THIS PROGRAM. If software is modified to produce derivative works, such modified software should be clearly marked. Additionally, user can redistribute it and/or modify it under the terms of the GNU General Public License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. See the GNU General Public License for more details.
 
% for any support connect with us on help.indusmic@gmail.com
 
# Author: Dhanishtha Sharma
 

 
import sympy
 
import math
 
from sympy import symbols
 
from sympy import *
 
from sympy.plotting import plot3d
 
import numpy as np
 
import matplotlib as mpl
 
import matplotlib.pyplot as plt
 
from mpl_toolkits.mplot3d import Axes3D
 

 
#%matplotlib notebook
 
plt.rcParams['figure.figsize'] = (6,4)
 
plt.rcParams['figure.dpi']=150
 
fig=plt.figure()
 
ax=fig.add_subplot(111,projection='3d')
 
x1,x2=symbols('x1 x2')
 

 
plot3d((2*(x1**2)-1.05*(x1**4)+((x1**6)/6)+(x1*x2)+(x2**2)),(x1,-5,5),(x2,-5,5))

References:

[1] Jamil, Momin, and Xin-She Yang. "A literature survey of benchmark functions for global optimization problems." International Journal of Mathematical Modelling and Numerical Optimization 4.2 (2013): 150-194.

#optimization #benchmarkfunction

    11220
    7