how to find argmin to this vector

96 ビュー (過去 30 日間)
Murali Krishna AG
Murali Krishna AG 2020 年 11 月 24 日
コメント済み: Murali Krishna AG 2020 年 11 月 24 日
c=argmin f(a,b).where both a,b are M*1 and N*1 column matrices respectively.
How to get a,b for minimum value of f(a,b) from matlab
  2 件のコメント
James Tursa
James Tursa 2020 年 11 月 24 日
What does it mean to find the minimum value or index of two vectors with different lengths? Can you provide a short example of inputs and desired output?
Murali Krishna AG
Murali Krishna AG 2020 年 11 月 24 日
Eg: Let function f=A^2+B^2+A*B+2*A^2*B
where A,B are known column matrices
Input:A,B
Expect output A,B.
I want to find in which A,B matrices the functiuon f could be minimum

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

採用された回答

KSSV
KSSV 2020 年 11 月 24 日
Are you looking for something like this?
Let a,b be your column matrices.
[a,b] = meshgrid(a,b) ; % make them a matrix
F = f(a,b) ; % evaluate your function, use element by element operations in f
[val,idx] = min(F(:)) ;
amin = a(idx) ;
bmin = b(idx) ;
Have a look on fmincon.

その他の回答 (0 件)

カテゴリ

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