Research Article

Velocity-Adaptive Prescribed Performance Control for Carrier-Based Aircraft Based on Guardian Maps

Algorithm 1

Algorithm for seeking the center of the multiparametric feasible region.
Input: the initial parameter p0, and the tolerance of parameter shift tole
Initialize the current parameter and the shift of parameter: pc = p0, dp = 1.
While dp > tole
  Initial the following trial parameter: pn = pc.
   For i = 1:dim(pn)
    Calculate the null space of the i-th dimension based on pn, and obtain the
     feasible region [pl(i), pu(i)].
    Update the value of the i-th dimension parameter as the middle value in the
     feasible region: pn(i) = mean(pl(i), pu(i)).
   End
   Calculate the shift of the updated parameter: .
   Update the current parameter: pc = pn;
end
Output: the current parameter pc.