Beantwortet
Error with Fmincon nonlinear constraint
Try this, as documented: nlcon = @(x)deal([],F); Alan Weiss MATLAB mathematical toolbox documentation

etwa 6 Jahre vor | 2

| akzeptiert

Beantwortet
How to get intlinprog to stop when the answer is good enough?
You can create an intlinprog output function to stop the optimizaiton when the objective function value goes below a set limit s...

etwa 6 Jahre vor | 1

| akzeptiert

Beantwortet
Refining mesh size (by having very small mesh size) close to the semi-circular flaw tip - Maximum Principal Stresses and Maximum Shear Stresses
I really don't know, but it is possible that the legacy function adaptmesh would enable you to perform your calculation to the r...

etwa 6 Jahre vor | 0

Beantwortet
how can i plot this code into a banana solutiongraph?
Perhaps what you are asking relates to this example: https://www.mathworks.com/help/optim/ug/banana-function-minimization.html ...

etwa 6 Jahre vor | 0

Beantwortet
nonlinear optimization constraints problem
I suggest that you ensure that your initial point is feasible, and then insert code into your objective function that first eval...

etwa 6 Jahre vor | 0

Beantwortet
How to set up parameter estimation in fmincon
I'm not sure, but I think what you are asking is how to pass several arguments as control variables, and maybe how to pass extra...

etwa 6 Jahre vor | 0

Beantwortet
why fmincon output solver stopped prematurely when nonlinear constraint seems satisfied
As you see from the first line of the Tolerance Details table, fmincon constraint tolerances are relative, meaning they are meas...

etwa 6 Jahre vor | 1

Beantwortet
How to get Lagrange multipliers when using GlobalSearch?
Sorry about that. The only way I know is to rerun fmincon starting from the solution point. It won't take long, and will give yo...

etwa 6 Jahre vor | 1

Beantwortet
Optimizing function of functions
You could use the approach in Generate and Plot a Pareto Front. Or you could try using a multiobjective solver, if you have a Gl...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
I've got a problem with optimization and using a variable for exponent
Optimization Toolbox™ does not support general nonlinear integer programming. Use ga or surrogateopt for nonlinear integer progr...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
Optimization Problem with Fixed Discreet Variables
I am not sure, but this example might be relevant. Good luck, Alan Weiss MATLAB mathematical toolbox documentation

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
Feasible solutions in a function with a given product.
You can loop through various ri values and read off the resulting L values. Alan Weiss MATLAB mathematical toolbox documentati...

etwa 6 Jahre vor | 1

| akzeptiert

Beantwortet
Traveling Salesman Optimization Problem
You can look at this example. But it is much better to use mixed-integer linear programming, as in this example. Alan Weiss M...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
How can I add constraint on variable in genetic algorithm which can take both discrete and continuous values.
You can represent this 0-or-in-a-range type of constraint by using an auxiliary variable. Suppose that your variable z can be in...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
Trying to fit a differential equation to some data using lsqcurvefit but getting bad results
My interpretation of your reported lsqcurvefit result is that the solver agrees that you started with the optimal point. It didn...

etwa 6 Jahre vor | 0

Beantwortet
How to write objective function for Bayesian Optimization (bayesopt)?
There is an example here: https://www.mathworks.com/help/stats/bayesian-optimization-plot-functions.html#d118e31663 The link y...

etwa 6 Jahre vor | 0

Beantwortet
How to avoid points that the genetic optimization cannot compute?
The patternsearch and surrogateopt solvers are robust to this type of failure. I suggest that you give them a try. In particula...

etwa 6 Jahre vor | 0

Beantwortet
looking for a solution for an optimization problem
I think that you need to be more careful when trying to follow the example. EITHER use fmincon OR use lsqnonlin, not both. The f...

mehr als 6 Jahre vor | 0

Beantwortet
Genetic algorithm gives incorrect output
I suggest that you give an initial population consisting of at least one feasible point, meaning a point that gives a non-NaN va...

mehr als 6 Jahre vor | 1

Beantwortet
looking for a solution for an optimization problem
You might find this example relevant. If you have a recent MATLAB version, then look at this example. Alan Weiss MATLAB mathem...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Consecutive nested integration (definite/indefinite)
I would try to answer this question by not integrating from 0 to infinity, but instead from 0 to a large value, and then use an ...

mehr als 6 Jahre vor | 0

Beantwortet
Solutions of genetic algorithm and globalsearch versus fmincon
See Hessian for an explanation of why the fmincon Hessian return is pretty much useless. If you need the Hessian AND the solutio...

mehr als 6 Jahre vor | 0

Beantwortet
How to plot the best individual in GA
I am not sure, but it could be that the disparity in the sizes of your components is to blame. I suggest that you scale the firs...

mehr als 6 Jahre vor | 0

Beantwortet
Problem with fmincon ''number of runs''
fmincon is a gradient-based solver. It attempts to evaluate the gradient of the objective function at each iteration. By default...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
Dose who know about Optimization with Summation objective function?
Maybe you should update fun to remember the entire sum, not just the final one. And maybe you should name your indices. fun = o...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Defining constraints in the Quadratic Programming
You can try setting equal upper and lower bounds for those variables. For example, lb = [3, -inf,5]; ub = [3,inf,5]; sets x(1...

mehr als 6 Jahre vor | 1

Beantwortet
gamultiobj save the optimum value and population in each generation (iteration)
You can use a custom output function, as in this example, to record the population and Pareto front. In the State Structure, the...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Rate constant estimation and optimization (ODE)
You might find this example or this example to be relevant. Alan Weiss MATLAB mathematical toolbox documentation

mehr als 6 Jahre vor | 0

Beantwortet
Undefined function 'prob2struct' for input arguments of type 'sym'
You cannot use symbolic variables directly with Optimization Toolbox™ functions. Either convert your symbolic expressions using ...

mehr als 6 Jahre vor | 0

Beantwortet
Optimization Toolbox - Equality Contraint for matrix inputs
You might find that this type of structured constraint is handled most easily using the problem-based approach. See, for example...

mehr als 6 Jahre vor | 0

Mehr laden