Metaheuristic Computation with MATLAB®
eBook - ePub

Metaheuristic Computation with MATLAB®

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

Metaheuristic Computation with MATLAB®

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

Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
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.
Perlego offers two plans: Essential and Complete
  • Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
  • Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Both plans are available with monthly, semester, or annual billing cycles.
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.
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.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
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 Informatica & Intelligenza artificiale (IA) e semantica. We have over one million books available in our catalogue for you to explore.

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

  1. Cover
  2. Half Title
  3. Title Page
  4. Copyright Page
  5. Table of Contents
  6. Preface
  7. Acknowledgments
  8. Authors
  9. Chapter 1 ▪ Introduction and Main Concepts
  10. Chapter 2 ▪ Genetic Algorithms (GA)
  11. Chapter 3 ▪ Evolutionary Strategies (ES)
  12. Chapter 4 ▪ Moth–Flame Optimization (MFO) Algorithm
  13. Chapter 5 ▪ Differential Evolution (DE)
  14. Chapter 6 ▪ Particle Swarm Optimization (PSO) Algorithm
  15. Chapter 7 ▪ Artificial Bee Colony (ABC) Algorithm
  16. Chapter 8 ▪ Cuckoo Search (CS) Algorithm
  17. Chapter 9 ▪ Metaheuristic Multimodal Optimization
  18. Index