Finding minimum point from any function file input.

3 ビュー (過去 30 日間)
Jia Qing Soo
Jia Qing Soo 2013 年 10 月 9 日
編集済み: Matt J 2013 年 10 月 9 日
Given ANY function file input, which we can assume to be continuous between [1,2], what is the code to estimate the x-value where the graph achieves its minimum point?

回答 (2 件)

Matt Kindig
Matt Kindig 2013 年 10 月 9 日
編集済み: Matt Kindig 2013 年 10 月 9 日
I would check out the documentation for fminsearch() and fminbnd(), or if you have the Optimization Toolbox, fminunc():
doc fminsearch
doc fminbnd
doc fminunc
For example, if your function is f(x)=sin(x), you can call it like this:
sol = fminbnd(@sin, 1, 2)
  2 件のコメント
Jia Qing Soo
Jia Qing Soo 2013 年 10 月 9 日
Is there another way of finding the minimum point?
For example, writing a code such as to input an x-value (from x = 1 to 2 with an interval of 0.1) to derive the corresponding f(x) and then getting matlab to figure out which f(x) is the minimum?
Matt Kindig
Matt Kindig 2013 年 10 月 9 日
Are the f(x) functions pre-defined, or can they be literally anything? If they can be anything, this problem is impossible to solve, as there are an infinite number of f(x) functions possible.
What exactly is your goal here?

サインインしてコメントする。


Matt J
Matt J 2013 年 10 月 9 日
編集済み: Matt J 2013 年 10 月 9 日
If f(x) is vectorized, you would just do
[minval,minloc] = min(f(1:0.1:2))
If you can't rely on it being vectorized, you would have to loop
x=1:0.1:2;
m=inf(size(t));
for i=1:length(m)
m(i)=f(x(i));
end
[minval,minloc]=min(m);

カテゴリ

Help Center および File ExchangePerformance and Memory についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by