Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Overview of the GlobalOptimization Package
Calling Sequence
Description
Accessing Package Commands
List of Package Commands
Notes
Examples
GlobalOptimization[command](arguments)
command(arguments)
The Global Optimization Toolbox, powered by Optimus® technology from Noesis Solutions, is implemented as the GlobalOptimization package, which numerically computes global solutions to nonlinear programming (NLP) problems over a bounded region. An NLP problem is the minimization or maximization of an objective function, possibly subject to constraints.
The GlobalOptimization package contains a command for solving optimization problems, which can be specified in various forms. For information on the input forms, see the GlobalOptimization/InputForms help page. Additionally, the package offers an interactive Maplet interface that provides an easy-to-use facility for entering and solving an optimization problem, as well as plotting both the problem and its solution.
Using the many options, you can control the algorithms used by the global solver. For information on these options, see the GlobalOptimization/Options help page.
The global solver in the GlobalOptimization package calls external code that uses hardware floats, but the objective function and the constraints can be evaluated in Maple with higher precision. For more information on the global solver, the algorithms, the floating-point computation environment, and ways to achieve best performance with the solver, see the GlobalOptimization/Computation help page.
For more information and examples on the toolbox, see Introduction to the Global Optimization Toolbox and Applications of the Global Optimization Toolbox.
Each command in the GlobalOptimization package can be accessed by using either the long form or the short form of the command name in the command calling sequence.
Because the underlying implementation of the package is a module, it is possible to use the form GlobalOptimization:-command to access a command from the package. For more information, see Module Members.
The following is a list of available commands.
GetLastSolution
GlobalSolve
Interactive
To display the help page for a particular command, see Getting Help with a Command in a Package.
The GlobalSolve help page describes the most commonly used forms of input. Use with the more advanced Matrix form of input is described in the GlobalOptimization[GlobalSolveMatrixForm] help page.
To see additional information on the progress of the solver during the solution of an optimization problem, set infolevel[GlobalOptimization] to a positive integer. More information is printed at higher infolevel settings.
with⁡GlobalOptimization:
Find the global solution to the minimization problem ln⁡x⁢sin⁡x in the range 1..20.
GlobalSolve⁡ln⁡x⁢sin⁡x,x=1..20
−2.85006479973796,x=17.2990352355127
Find the global solution to a constrained minimization problem.
GlobalSolve⁡x6−5⁢x3−20⁢x2−5,5⁢x2+20⁢x+18≤0,x=−3..3
−23.0747312455205424,x=−1.36754446796582
See Also
Copyright and Trademark Information
examples/IntroductionGlobalOptimization
GlobalOptimization/Computation
GlobalOptimization/InputForms
GlobalOptimization/Options
infolevel
Download Help Document