Optimisation without the toolbox!

12 views (last 30 days)
Christopher Hall
Christopher Hall on 24 Apr 2015
Commented: Christopher Hall on 25 Apr 2015
Hi all,
I am looking to start building a function which goal seeks along a given boundary. I have some solution data from an FEA software with relative velocity data. I want to sort through the data and find the maximum value possible from an boundary box of say [50,2].
How would I begin to start writing a code which sorts through the data and finds the maximum?
Many thanks, chris

Answers (1)

Matt J
Matt J on 24 Apr 2015
Edited: Matt J on 24 Apr 2015
It's not clear to me why you wouldn't simply use the max() function if you're just maximizing over a set of samples that you already have.
If instead you need to find the max. over the continuous region of the boundary box then you could use fminsearch or fminbnd which don't require more than basic MATLAB. However, you would need to decide on an objective function and in particular how it will interpolate your FEA samples over the box boundary. The interpolation code will depend on whether the FEA data is gridded or scattered.
  5 Comments
Matt J
Matt J on 25 Apr 2015
Not without knowing what objective function of those vectors you're trying to optimize
Christopher Hall
Christopher Hall on 25 Apr 2015
I want to assign regions to specific nodes within the geometry depending on their global coordinate position. So almost like building a library of sector data which can be queried to find the sector with max(u).
The data has 4 columns [X,Y,u,v].

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!