답변 있음
Trying to solve Bethe equations - system of non linear equations
You are the unfortunate victim of a naming discrepancy. The fsolve you linked is for Optimization Toolbox, not Symbolic Math sym...

4년 초과 전 | 0

답변 있음
How to use ObjectiveCutOff and ObjectiveImprovementThreshold from optimoptions in solver-based optimization problems
I think that you have a mistaken view of what these options do. Consult the options to see what they really do. I don't think th...

4년 초과 전 | 0

| 수락됨

답변 있음
Error using ofun Too many input arguments.
I cannot reproduce your issue. When I try the following, I do not get an error: x = randn(20,1); r = ofun(x) function f = o...

4년 초과 전 | 0

답변 있음
How to fit a generate polynomial coefficients of with general requirements
I could be wrong, but it sounds to me as if the Problem-Based Optimization Workflow would work well for you. You do not have an ...

4년 초과 전 | 0

답변 있음
How to fit a function to 2D array when some parts of the underlaying function are known?
Well, it depends what you mean by "Z is proportional to c/X and Z is proportional to c2 + c3Y + c4Y^2". You could mean that Z is...

4년 초과 전 | 0

| 수락됨

답변 있음
Relation between population size and function count for genetic algorithm
The answer is that some population members are "elite," and they do not have to be evaluated again. See How the Genetic Algorith...

4년 초과 전 | 0

| 수락됨

답변 있음
Working of PSO with hybrid function
It means the hybrid function runs after particleswarm stops. Ends. Is done. That's what terminates means. In fact, it is equival...

4년 초과 전 | 1

| 수락됨

답변 있음
Minimization and Optimization. Minimize output by optimizing inputs
Sounds like you would be best served with the Problem-Based Optimization Workflow. Declare the variables that can change as opti...

4년 초과 전 | 0

| 수락됨

답변 있음
Unable to perform assignment because the size of the left side is 1-by-14 and the size of the right side is 14-by-14.
The error statement is clear: your assignment (equality) statement has a 1-by-14 vector on the left and a 14-by-14 matrix on the...

4년 초과 전 | 0

답변 있음
fmincon is returning some garbage values in the final output
When I run your script I get the same results as you, so thank you for including all the relevant information. Note that your c...

4년 초과 전 | 0

답변 있음
(OPTIMIZATION) Initial point is a local minimum - PROBLEM!!
I suggest that you plot the square of the objective function over a reasonable range of the parameter and over a small range suc...

4년 초과 전 | 0

| 수락됨

답변 있음
solve a set of two linear equations
I don't really understand what you are trying to do, but it sounds to me like your best bet is to use the Problem-Based Optimiza...

4년 초과 전 | 0

답변 있음
Solve taking too long, how to optimize code?
Another point of view in case Matt's solution is not satisfactory: work completely in floating point computation rather than sym...

4년 초과 전 | 0

답변 있음
Refreshment of the objective function with FMINCON
I think that you have a mistaken view of what fmincon does. All optimization solvers take a fixed objective function and iterate...

4년 초과 전 | 1

답변 있음
Optimisation: minimise function while maximising a design variable
Perhaps you can change the optimization in a nearly unnoticeable way that would bias solutions to have large values of R, like t...

4년 초과 전 | 2

답변 있음
Problem using fminbnd function
All optimization solvers require that the objective function return a scalar value. You need to write your objective function in...

4년 초과 전 | 0

답변 있음
Augmented Lagrangian and Penalty Methods
Sounds like a homework problem. I suggest that you consult the documentation for passing extra parameters, such as Passing Extr...

4년 초과 전 | 0

답변 있음
Find gradient numerically for the equation
There are tools on the File Exchange that can help you find numerical approximations to derivatives. For example, see Adaptive R...

4년 초과 전 | 0

| 수락됨

답변 있음
optimization problem - problem using det funciton
The main problem is that det is not a Supported Operations on Optimization Variables and Expressions. For example, x = optimvar...

4년 초과 전 | 1

| 수락됨

답변 있음
How to optimize nonlinear multiple input model with multiple constraints
I doubt that you want a symbolic solution. You probably want numbers. So I suggest that you use the Problem-Based Optimization W...

4년 초과 전 | 0

답변 있음
can i use different solvers for problem based optimisation in matlab
You CAN use different solvers. The question is, SHOULD you? In other questions you have shown that you are trying to solve an MI...

4년 초과 전 | 0

| 수락됨

답변 있음
Optimizing 1 equation with 7 variables
I think that you would have an easier time formulating your problem by using the problem-based approach. However, if you really...

4년 초과 전 | 0

답변 있음
Matlab optimprob _Problem based _how can i see the optimal parameter setting while using optimprob
You can set a plot function in the options for your solver. To see which solver is being used, call optimoptions: options = opt...

4년 초과 전 | 0

| 수락됨

답변 있음
How to find fixed number of variables with value 1 using Genetic Algorithm with population type Bitstring ?
If I understand you correctly (and I might not have understood), you want to impose a linear constraint on the population x sum...

4년 초과 전 | 0

| 수락됨

답변 있음
Find best input combinations that will maximize the output of a non-linear ODE mathematical model
Add the parameters to optimize as a vector in your ODE calculation: function rest = Scrpt1(t,X,params) x2 = X(1); x3 = X(2);...

4년 초과 전 | 1

| 수락됨

답변 있음
How to use simulated annealing to optimize a simulation based, multicriteria Problem?
Your question confuses me because you talk about having a multiobjective problem but then seem to want to use simulannealbnd to ...

4년 초과 전 | 0

답변 있음
parallel computing in Genetic algorithm
You have to be careful using parallel computing. Are you using Simuulink® for the simulation? I am not sure that it can run in p...

4년 초과 전 | 0

답변 있음
How to find a part of function value in Genetic Algorithm after each iteration cycle
I think that you can write a Custom Output Function for Genetic Algorithm and use it to calculate what you want and store them i...

4년 초과 전 | 0

| 수락됨

답변 있음
Coding a GA using constraint functions but getting array size error. - SOLVED
I think that you can investigate this problem yourself by using the debugger to set a break point at or just before line 119, an...

4년 초과 전 | 0

| 수락됨

답변 있음
multi constraints fmincon optimization
I don't know which of these variables are optimization variables, meaning those that can be changed to try to optimize, and whic...

4년 초과 전 | 0

| 수락됨

더 보기