Parameter-Optimal-State-Transition-Algorithm

This is an improved State Transition Algorithm (STA). An optimal parameters selection strategy is proposed to accelerate its search process.

이 제출물을 팔로우합니다

State transition algorithm (STA) has been emerging as a novel metaheuristic method for global optimization in recent few years. In previous version, the parameter of transformation operator in continuous STA is kept constant or decreasing itself in a periodical way. In this improved version, the optimal parameter selection of the STA is taken in consideration.
# Parameter-Optimal-State-Transition-Algorithm (POSTA)
State transition algorithm (STA) is a new metaheuristic method, which is used for global optimization with box constraints without the derivative information.
$\min f(x)$
$\mathrm{s.t.} x_{lb} \leq x \leq x_{ub}$
In POSTA, we have four state tranformation operators, namely, rotation, translation, expansion and axesion.
Rotation Tranformation(RT)
$$ x_{k+1}=x_{k}+\alpha R_{r} \frac{x_{k}}{n \|x_{k}\|_{2}} $$
where, $\alpha$ is a positive constant, called rotation factor; $R_{r}$ $\in$ $\Re^{n\times n}$, is random matrix with its entries obeying the uniform distribution in the range of [-1, 1] and $\|\cdot\|_{2}$ is 2-norm of vector or Euclidean norm. The rotation transformation has the function of searching in a hypersphere.
Translation Tranformation(RT)
$$x_{k+1} = x_{k}+ \beta R_{t} \frac{x_{k}-x_{k-1}}{\|x_{k}-x_{k-1}\|_{2}}$$
where, $\beta$ is a positive constant, called translation factor; $R_{t}$ $\in \Re$ is a random variable with its components obeying the uniform distribution in the range of [0,1]. It is obvious to find the translation transformation has the function of searching along a line from $x_{k-1}$ to $x_{k}$ at the starting point $x_{k}$, with the maximum length of $\beta$.
Expansion Tranformation(RT)
$$x_{k+1} = x_{k}+ \gamma R_{e}x_{k}$$
where, $\gamma$ is a positive constant, called expansion factor; $R_{e} \in \Re^{n \times n}$ is a random diagonal matrix with its elements obeying the Gaussian distribution. It is also obvious to find the expansion transformation has the function of expanding the components in $x_{k}$ to the range of $[-\infty, +\infty]$, searching in the whole space.
Axesion Tranformation(RT)
$$x_{k+1} = x_{k}+ \delta R_{a}x_{k}$$
where, $\delta$ is a positive constant, called axesion factor; $R_{a}$ $\in \Re^{n \times n}$ is a random diagonal matrix with its entries obeying the Gaussian distribution and only one random position having nonzero value. The axesion transformation aims to search along the axes and strengthens single dimensional search.
In POSTA, the state tranformation factors $\alpha, \beta, \gamma, \delta$ are dynamically changed, and they are chosen form a set $\Omega$ = {1, 1e-1, 1e-2, 1e-3, 1e-4, 1e-5, 1e-6, 1e-7, 1e-8}, and the optimal value will be maintained for some time.

인용 양식

Michael (2026). Parameter-Optimal-State-Transition-Algorithm (https://kr.mathworks.com/matlabcentral/fileexchange/69721-parameter-optimal-state-transition-algorithm), MATLAB Central File Exchange. 검색 날짜: .

Zhou X, Yang C, Gui W. A statistical study on parameter selection of operators in continuous state transition algorithm[J]. IEEE Transactions on Cybernetics, 2019 49(10): 3722-3730.

Zhou, Xiaojun, et al. “A Statistical Study on Parameter Selection of Operators in Continuous State Transition Algorithm.” IEEE Transactions on Cybernetics, vol. 49, no. 10, Institute of Electrical and Electronics Engineers (IEEE), Oct. 2019, pp. 3722–30, doi:10.1109/tcyb.2018.2850350.

양식 더 보기

카테고리

Help CenterMATLAB Answers에서 Direct Search에 대해 자세히 알아보기

태그

태그 추가

Add the first tag.

일반 정보

MATLAB 릴리스 호환 정보

  • 모든 릴리스와 호환

플랫폼 호환성

  • Windows
  • macOS
  • Linux
버전 퍼블리시됨 릴리스 정보 Action
1.0.4

Modifications

1.0.3

Add markdown format

1.0.2

references for this code.

1.0.1

update screenshot

1.0.0