I want to find the x and y values of f(x,y) when f(x,y) is a minimum over x = -1:0.001:1 and y = -1:0.001:1.
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    James Adam
 el 27 de Ag. de 2016
  
    
    
    
    
    Respondida: Azzi Abdelmalek
      
      
 el 27 de Ag. de 2016
            I know how to get min(f). min(x) and min(y) just give -1, not their values when f(x,y) is a minimum. Please help. Thanks
0 comentarios
Respuesta aceptada
  Azzi Abdelmalek
      
      
 el 27 de Ag. de 2016
        x=-1:0.001:1
y=x
[ii,jj]=ndgrid(x,y]
z=sin(ii)+cos(jj)   % Example
[min_val,index]=min(z)
xidx=x(index)
yidx=y(index)
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Fluid Dynamics en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!