Respondida
GA violates the linear inequality constraints
You have expressed your constraints as nonlinear inequality constraints, not as linear inequality constraints. If the constraint...

más de 7 años hace | 0

| aceptada

Respondida
How to set up user-supplied Hessian in fmincon for a minimization problem with nonlinear objective and nonlinear constraint?
For general advice related to this sort of problem, see Converged to an Infeasible Point. Alan Weiss MATLAB mathematical toolb...

más de 7 años hace | 0

Respondida
genetic algorithm optimisation toolbox
If you have a multiobjective function, then use gamultiobj instead of ga. Alan Weiss MATLAB mathematical toolbox documentation...

más de 7 años hace | 1

| aceptada

Respondida
How to solve an optimization problem with stability constraints using 'fmincon'?
Perhaps this example will give you some ideas. It is written as a multiobjective problem, but you can adapt the code easily to s...

más de 7 años hace | 1

Respondida
I have a time series of monthly log returns, and want to transform these into monthly log prices. How do I proceed?
doc cumsum Alan Weiss MATLAB mathematical toolbox documentation

más de 7 años hace | 0

Respondida
Bayesopt: min observed objective not decreasing
Take a look at the note in the documentation of Coupled Constraints. Alan Weiss MATLAB mathematical toolbox documentation

más de 7 años hace | 0

Respondida
Plotting ga custom plot with additional inputs (calculated parameters )
When you create an anonymous function to pass extra parameters, the parameters that are available in the nested function are the...

más de 7 años hace | 0

Respondida
Find specific point in unknown "function"
The most efficient way is to use fzero as Torsten said. Your function is @(x)y(x)-1. For the most efficiency, set the initial po...

más de 7 años hace | 2

| aceptada

Respondida
GA calculates wrong penalty
To answer your second question first, if you set a problem structure as documented then you can call ga by [x,fval] = ga(proble...

más de 7 años hace | 0

| aceptada

Respondida
GA calculates wrong penalty
You are probably seeing the result of the integer-constrained solver. The fitness function is modified by a penalty term. It is ...

más de 7 años hace | 0

Respondida
Problems with fmincon constraints writing
You should not use linear constraints that way. Instead, use bounds. Your nonlinear constraint function looks fine. The reason...

más de 7 años hace | 0

Respondida
neumann boundary condition in diffusion on a disk and ring
I think that you might be making a modeling error. If the flux across the boundaries is zero, then perhaps you should not have t...

más de 7 años hace | 0

Respondida
Change the value of a variable between each iteration of fminsearch
I still think that I do not understand what you are really trying to do. But if you wnat to keep two functions equal, then in fm...

más de 7 años hace | 0

Respondida
Not enough input arguments for 'bayesopt'?
Please look at the documentation on Bayesian objective functions. The bayesopt solver passes a table to the objective function. ...

más de 7 años hace | 1

Respondida
fmincon: interior-point & SQP computational complexity
This question can probably be best estimated by scaling the problem from small to medium to lmedium-arge, running fmincon on all...

más de 7 años hace | 1

Respondida
How can I extract function evaluations that happen during iterations (fmincon) ?
The only way I know to do this is to have your objective function either display or write the values as it calculates them. The ...

más de 7 años hace | 0

| aceptada

Respondida
i need help in optimization toolbox
It is possible that the documentation has enough detail for your purpose: Genetic Algorithm Terminology How the Genetic Algori...

más de 7 años hace | 0

Respondida
Use Bayesian Optimization on Existing Database
Do you want to query your database or run your model? If you want to just query your database, input the database into MATLAB an...

más de 7 años hace | 0

Respondida
Choosing the best approach to quadratic progamming problem
The differences between the approaches are outlined here. There are several examples of quadratic programming here, both problem...

más de 7 años hace | 0

Respondida
Question about an effect of ConstraintTolerance on multiple constraints for GA optimization
Thank you for the clear explanation. You have a difficult nonlinear problem with all integer variables. The solver is struggling...

más de 7 años hace | 1

| aceptada

Respondida
Sparsity exploitation in optimization
There are several fmincon algorithms, and they each exploit sparsity differently. The term "large-scale" means that an algorithm...

más de 7 años hace | 0

Respondida
Algorithm parameter of solve ignored
You are passing the options incorrectly. See this example on the solve function reference page. Alan Weiss MATLAB mathematical...

más de 7 años hace | 0

| aceptada

Respondida
How to use the decision variables of the optimization problem in if else statement
I do not understand your formulation. You have ll and ul as optimization variables, which is why you are getting the complaints ...

más de 7 años hace | 0

Respondida
fmincon with sqp algorithm but without inclduing a gradient
See Benefits of Including Derivatives in the documentation. Alan Weiss MATLAB mathematical toolbox documentation

más de 7 años hace | 1

Respondida
Drawing parabolas in pdeModeler
pdeModeler is for 2-D problems, so I assume that you have 2-D geometry. In this case, you can use a parametrized function for 2-...

más de 7 años hace | 0

Respondida
Error using fminunc with array as function output and multiple inputs
It is not clear what you are trying to do. Your P(x,T,Tmed) is not a scalar, so it is not clear what it means to minimize it. Y...

más de 7 años hace | 0

Respondida
Optimization Problem: Max Sharpe Ratio
Currently, as the documentation clearly states, the problem-based approach does not apply to general nonlinear problems. You mus...

más de 7 años hace | 0

Respondida
change stepsize of fmincon
See Set Larger Finite Differences. Also, check that your function returns different values for different inputs. Alan Weiss MA...

más de 7 años hace | 0

| aceptada

Respondida
How to write selection function in genetic algorithm(Global Optimization Toolbox: ga)
I am not sure, but I am suspicious of the line GBparents(1,1)=find(expectation==B(1,1)); What makes you think that expectation...

más de 7 años hace | 0

Respondida
Convert Problem-Based to Solver-Based Optimization Problem
Coincidentally, that question was asked and answered recently. Bottom line: convert the problem by using prob2struct. Alan Weis...

más de 7 años hace | 0

Cargar más