Metaheuristic Computation with MATLABÂź
eBook - ePub

Metaheuristic Computation with MATLABÂź

Erik Cuevas, Alma Rodriguez

Partager le livre
  1. 260 pages
  2. English
  3. ePUB (adapté aux mobiles)
  4. Disponible sur iOS et Android
eBook - ePub

Metaheuristic Computation with MATLABÂź

Erik Cuevas, Alma Rodriguez

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

À propos de ce livre

Metaheuristic algorithms are considered as generic optimization tools that can solve very complex problems characterized by having very large search spaces. Metaheuristic methods reduce the effective size of the search space through the use of effective search strategies.

Book Features:

  • Provides a unified view of the most popular metaheuristic methods currently in use


  • Includes the necessary concepts to enable readers to implement and modify already known metaheuristic methods to solve problems


  • Covers design aspects and implementation in MATLAB Âź


  • Contains numerous examples of problems and solutions that demonstrate the power of these methods of optimization


The material has been written from a teaching perspective and, for this reason, this book is primarily intended for undergraduate and postgraduate students of artificial intelligence, metaheuristic methods, and/or evolutionary computation. The objective is to bridge the gap between metaheuristic techniques and complex optimization problems that profit from the convenient properties of metaheuristic approaches. Therefore, engineer practitioners who are not familiar with metaheuristic computation will appreciate that the techniques discussed are beyond simple theoretical tools, since they have been adapted to solve significant problems that commonly arise in such areas.

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que Metaheuristic Computation with MATLABŸ est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  Metaheuristic Computation with MATLABÂź par Erik Cuevas, Alma Rodriguez en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans Informatique et IngĂ©nierie de l'informatique. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Année
2020
ISBN
9781000096538

CHAPTER 1

Introduction and Main Concepts

OBJECTIVE

The objective of this chapter is to introduce the main concepts that involve an optimization process. In this way, once the optimization problem is generically formulated, the methods used for its solution are then classified. Considering that the book focuses on the study of metaheuristic techniques, traditional gradient-based algorithms will be only marginally treated. Another important objective of this chapter is to explain the main characteristics of evolutionary algorithms, introducing the dilemma of exploration and exploitation. Furthermore, acceptance and probabilistic selection are also analyzed. These are the two main operations used in most metaheuristic methods. Finally, three of the first evolutionary methods which have been considered as the basis for the creation of new algorithms have been exposed. The idea with this treatment is to introduce the concepts of metaheuristic methods, through implementing techniques that are easy to understand.

1.1 Introduction

Optimization has become an essential part of all disciplines. One reason for this consideration is the motivation to produce products or quality services at competitive prices. In general, optimization is the process of finding the “best solution” to a problem among a big set of possible solutions (Baldick, 2006).
An optimization problem can be formulated as a process in which it is desired to find the optimum value x∗ that minimizes or maximizes an objective function f(x). Such that
Minimize/Maximizef(x), x=(x1,
,xd)∈ℝdSubject to:x∈X,(1.1)
where x represents the vector of decision variables, while d specifies its dimension. X symbolizes the set of candidate solutions, also known as the solution search space. In many occasions, the bounds of the search space are located by the lower (li) or upper (ui) limits of each decision variables such that X={x∈ℝd|li≀xi≀ui, i=1,
,d}.
Sometimes it is necessary to minimize f(x), but in other scenarios it is necessary to maximize. These two types of problems are easily converted from one to another through the following relationship:
minx∗ f(x)⇔maxx∗ [−1⋅f(x)]maxx∗ f(x)⇔minx∗ [−1⋅f(x)](1.2)
To clarify these concepts, the following minimization problem is presented as an example:
Minimizef(x)=x4+5x3+4x2−4x+1Subject to:x∈[−4,1](1.3)
In this formulation, the minimization of a function with a single decision variable (d = 1) is presented. The search space X for this problem is integrated by the interval from −4 to 1. Under these circumstances, the idea is to find the value of x for ...

Table des matiĂšres