photo

Rakesh Kumar

Last seen: 2 months 前 自 2011 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

0 个提问
13 个回答

File Exchange

2 文件

Cody

0 个问题
8 个答案

排名
1,807
of 300,159

声誉
38

贡献数
0 个提问
13 个回答

回答接受率
0.00%

收到投票数
9

排名
817 of 20,880

声誉
2,298

平均
4.40

贡献数
2 文件

下载次数
4

ALL TIME 下载次数
22785

排名
43,249
of 167,558

贡献数
0 个问题
8 个答案

评分
90

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 4
  • First Submission
  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Can I restart surrogateopt from earlier iterations with checkpoint file?
I don't think of any easy way to do this.

2 years 前 | 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 前 | 3

| 已接受

已回答
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 前 | 0

| 已接受

已回答
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 ...

5 years 前 | 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...

5 years 前 | 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 前 | 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 前 | 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 前 | 0

| 已接受

已回答
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...

14 years 前 | 0

| 已接受

已回答
mesh size change in patternsearch
The trial points are probably infeasible with that big mesh size; hence no function evaluation.

14 years 前 | 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 前 | 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 前 | 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 前 | 0

| 已接受