how to find argmin to this vector
    27 次查看(过去 30 天)
  
       显示 更早的评论
    
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
      
      
 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?
采纳的回答
  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 个评论
更多回答(0 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!