Please could I have more detail on the 'quasirandom' sequence in surrogateopt?
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I'm investigating the effectiveness of the function 'surrogateopt' by applying it to a series of test tasks involving integer optimisation variables, and constraints. Considering that it's effectiveness is dependent on the intial points, I would like to know more about the 'quasirandom' sequence by which these are sometimes selected. Digging through the code for surrogateopt.m in R2020a, I can see that this sequence is probably generated at line 139 of BlackboxModelOptimizer.m in the call:
nextTrial = globaloptim.bmo.solver(self.trialRequest);
However, I cannot access the code for this function since 'solver' is contained within a 'p file' - solver.p
Is anyone able to give me some more information on this quasirandom sequence?
Is it dependent on the state of the random number generator at the call of surrogateopt()?
Any help appreciated. Thanks
Regards,
Bob
0 个评论
回答(1 个)
Rakesh Kumar
2020-3-24
Please take a look at this doc page (section Definitions for Surrogate Optimization)
surrogateopt uses Sobol set to create random samples. It is not dependent on the state of MATLAB random number generator.
Thanks,
Rakesh
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surrogate Optimization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!