Statistics
RANK
1,763
of 297,016
REPUTATION
38
CONTRIBUTIONS
0 Questions
13 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
9
RANK
805 of 20,419
REPUTATION
2,295
AVERAGE RATING
4.40
CONTRIBUTIONS
2 Files
DOWNLOADS
8
ALL TIME DOWNLOADS
22759
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Can I restart surrogateopt from earlier iterations with checkpoint file?
I don't think of any easy way to do this.
2 years ago | 2
Optimization using parallel-computing is returning optimized vector that does not match the reward provided.
Hi Aaron, Optimization solvers often does not work with "UseParallel == true" option when a Simulink model is part of objective...
2 years ago | 3
| accepted
Is it possible to impose custom conditions for an early surrogate reset?
Hi James, Surrogateopt reset criteria depends on the "expected reduction of objective function value" assuming the incumbent is...
4 years ago | 0
| accepted
GA error due to boxdirections
Before running your code, please issue this command (so MATLAB wil stop where an error is thrown) dbstop if error MATLAB will ...
4 years ago | 0
Unexpected Change in Population Diversity of Genetic Algorithm
Hi David, The behavior is strange. It would be great to have a reproduction script if you can share since this behavior is on a...
4 years ago | 0
Please could I have more detail on the 'quasirandom' sequence in surrogateopt?
Please take a look at this doc page (section Definitions for Surrogate Optimization) https://www.mathworks.com/help/gads/surrog...
5 years ago | 0
Does using global variables in objective function risk error when using ga in parallel?
Every worker will have its own copy of the global variable not in sync with other workers. Its global for all the M-files on a w...
10 years ago | 1
Patternsearchw with genetic algorithm
Hi Grzegorz, Thanks for posting this issue; it is a bug. The only workaround I can see is to change the code and compare nargin...
11 years ago | 0
| accepted
Slacktol value ?
First suggestion is to use the newer algorithm added in 11a if you can. The warning message I get should be fixed (easy to f...
13 years ago | 0
| accepted
mesh size change in patternsearch
The trial points are probably infeasible with that big mesh size; hence no function evaluation.
13 years ago | 1
How to get alternative solutions to a linear programming problem using linprog?
Why do you think there won't be a unique solution? When you have a linear objective (bounded) and constraints are linear (and bo...
14 years ago | 1
quadprog vs fmincon
Have you looked at fmincon 'interior-point' algorithm option? Here is a snippet of help from this algorithm W = HessMultFcn(x...
14 years ago | 1
Optimization of function described in standalone code
You will have to create a C++ file (which is called MEX in MATLAB environment) that can be called directly from MATLAB. See some...
14 years ago | 0
| accepted