Metaheuristic Computation with MATLAB®
eBook - ePub

Metaheuristic Computation with MATLAB®

Erik Cuevas, Alma Rodriguez

Share book
  1. 260 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Metaheuristic Computation with MATLAB®

Erik Cuevas, Alma Rodriguez

Book details
Book preview
Table of contents
Citations

About This Book

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.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Metaheuristic Computation with MATLAB® an online PDF/ePUB?
Yes, you can access Metaheuristic Computation with MATLAB® by Erik Cuevas, Alma Rodriguez in PDF and/or ePUB format, as well as other popular books in Informatique & Ingénierie de l'informatique. We have over one million books available in our catalogue for you to explore.

Information

Year
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: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 ...

Table of contents