Metaheuristic Computation with MATLAB®
eBook - ePub

Metaheuristic Computation with MATLAB®

Erik Cuevas, Alma Rodriguez

Compartir libro
  1. 260 páginas
  2. English
  3. ePUB (apto para móviles)
  4. Disponible en iOS y Android
eBook - ePub

Metaheuristic Computation with MATLAB®

Erik Cuevas, Alma Rodriguez

Detalles del libro
Vista previa del libro
Índice
Citas

Información del libro

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.

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es Metaheuristic Computation with MATLAB® un PDF/ePUB en línea?
Sí, puedes acceder a Metaheuristic Computation with MATLAB® de Erik Cuevas, Alma Rodriguez en formato PDF o ePUB, así como a otros libros populares de Informatique y Ingénierie de l'informatique. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Año
2020
ISBN
9781000096538
Edición
1
Categoría
Informatique

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:xX,(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={xd|lixiui, 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 [1f(x)]maxx f(x)minx [1f(x)](1.2)
To clarify these concepts, the following minimization problem is presented as an example:
Minimizef(x)=x4+5x3+4x24x+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 ...

Índice