필터 지우기
필터 지우기

Optimisation without the toolbox!

조회 수: 13 (최근 30일)
Christopher Hall
Christopher Hall 2015년 4월 24일
댓글: Christopher Hall 2015년 4월 25일
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

답변 (1개)

Matt J
Matt J 2015년 4월 24일
편집: Matt J 2015년 4월 24일
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
Matt J
Matt J 2015년 4월 25일
Not without knowing what objective function of those vectors you're trying to optimize
Christopher Hall
Christopher Hall 2015년 4월 25일
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].

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Support Vector Machine Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by