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

約6年 前 | 2

| 採用済み

回答済み
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...

約6年 前 | 1

| 採用済み

回答済み
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...

約6年 前 | 0

回答済み
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 ...

約6年 前 | 0

回答済み
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...

約6年 前 | 0

回答済み
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...

約6年 前 | 0

回答済み
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...

約6年 前 | 1

回答済み
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...

約6年 前 | 1

回答済み
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...

約6年 前 | 0

| 採用済み

回答済み
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...

約6年 前 | 0

| 採用済み

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

約6年 前 | 0

| 採用済み

回答済み
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...

約6年 前 | 1

| 採用済み

回答済み
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...

約6年 前 | 0

| 採用済み

回答済み
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...

約6年 前 | 0

| 採用済み

回答済み
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...

約6年 前 | 0

回答済み
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...

約6年 前 | 0

回答済み
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...

約6年 前 | 0

回答済み
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...

6年以上 前 | 0

回答済み
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...

6年以上 前 | 1

回答済み
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...

6年以上 前 | 0

| 採用済み

回答済み
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 ...

6年以上 前 | 0

回答済み
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...

6年以上 前 | 0

回答済み
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...

6年以上 前 | 0

回答済み
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...

6年以上 前 | 1

| 採用済み

回答済み
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...

6年以上 前 | 0

| 採用済み

回答済み
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...

6年以上 前 | 1

回答済み
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...

6年以上 前 | 0

| 採用済み

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

6年以上 前 | 0

回答済み
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 ...

6年以上 前 | 0

回答済み
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...

6年以上 前 | 0

さらに読み込む