Exporting Best Fitness Variables from Surrogate Algorithm

Hi all,
I’m trying to export only the best fitness variables (5 variables) from a surrogate optimization algorithm. Currently, I’m able to export the variables at each generation, but I would like to export only those that correspond to an improvement in the best fitness value.
Since the best value doesn’t necessarily change at every generation, I’d prefer to save only the variables when a new best is found.
Does anyone know how to implement this or have a suggestion for tracking and exporting only the best-performing variables throughout the optimization?
Best regards,
Mirhan

 Accepted Answer

1 Comment

Dear Matt,
Thank you for your response. I must have overlooked that—after your message, I checked again, and it seems to give exactly what I need.
That said, I still had to remove the redundant rows using:
x_history_unique = unique(x_history, 'rows');.
Best regards,
Mirhan

Sign in to comment.

More Answers (0)

Categories

Products

Release

R2024b

Asked:

on 16 Apr 2025

Commented:

on 18 Apr 2025

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!