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

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 7 Jahre vor | 0

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

etwa 7 Jahre vor | 1

| akzeptiert

Beantwortet
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...

etwa 7 Jahre vor | 1

Beantwortet
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

etwa 7 Jahre vor | 0

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

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 2

| akzeptiert

Beantwortet
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...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

etwa 7 Jahre vor | 0

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

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 0

Beantwortet
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. ...

etwa 7 Jahre vor | 1

Beantwortet
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...

etwa 7 Jahre vor | 1

Beantwortet
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 ...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 1

| akzeptiert

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

etwa 7 Jahre vor | 0

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

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

etwa 7 Jahre vor | 0

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

etwa 7 Jahre vor | 1

Beantwortet
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-...

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 0

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

etwa 7 Jahre vor | 0

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

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 0

Mehr laden