Borrar filtros
Borrar filtros

Optimisation without the toolbox!

13 visualizaciones (últimos 30 días)
Christopher Hall
Christopher Hall el 24 de Abr. de 2015
Comentada: Christopher Hall el 25 de Abr. de 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

Respuestas (1)

Matt J
Matt J el 24 de Abr. de 2015
Editada: Matt J el 24 de Abr. de 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 comentarios
Matt J
Matt J el 25 de Abr. de 2015
Not without knowing what objective function of those vectors you're trying to optimize
Christopher Hall
Christopher Hall el 25 de Abr. de 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].

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by