How to Run PSO with Real Data
2 次查看(过去 30 天)
显示 更早的评论
I want to use PSO to optimize a 3D problem using real data (lat, long, alt). How is this accomplished? I see in the examples and tutorials it is done against existing surface plots; Rosenbrock, Ackley, Griewank, etc.. How do I run it against real numbers?
R2020b
0 个评论
回答(2 个)
Walter Roberson
2020-9-19
You use whatever formula is appropriate. For example
d=load('In_Flight_Data.mat') ;
lat=d.lat;
long=d.long;
alt=d.alt;
fun = @(x) sum((x(1)-lat).^2 + (x(2)-long).^2 + (x(3)-tan(alt)).^2);
pso(fun, 3)
John D'Errico
2020-9-19
You can't. That is, the optimal is just the optimal value at each point in your sample. You cannot do better than that, at least, not unless you are willing to build a model of the process.
So, what are you willing to do in terms of a model? What do you know? What are you willing to assume? If you cannot build a model, then you cannot do any form of optimization that will have some chance of being better than the best point from your data.
If your data is at all noisy, then don't expect to do well of course. But one option might be to use an interpolating spline surface model. Again, noise will totally destroy any spline fit, making it useless for this purpose.
7 个评论
Walter Roberson
2020-9-22
When you use PSO, you hope to get out a vector of values. What properties do you want for the vector of values?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cast and Quantize Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!