How to numerically differentiate one function with respect to another?
Afficher commentaires plus anciens
I have two functions, u(x,y) and v(x,y), that are both intractable analytically and estimated numerically in MATLAB on a grid for x and y. How can I estimate du(x,y)/dv(x,y) at all points (x,y) on the grid? I want to plot du(x,y)/dv(x,y) against x and y.
1 commentaire
Roger Stafford
le 6 Déc 2017
Modifié(e) : Roger Stafford
le 6 Déc 2017
@Arkadiy: Your request is rather ambiguous. The derivative of u with respect to v at a given x,y point will in general depend upon which direction in the x,y plane one is moving. In other words, the partial derivative of u with respect to x divided by the partial derivative of v with respect to x, which indicates how u changes with respect to v along the x-axis, is not necessarily the same as the ratio of those two partial derivatives along the y-axis. You need to consider that such a derivative of u with respect to v is a partial derivative which requires two values, one in the x-direction and one in the y-direction.
Réponses (1)
ANKUR KUMAR
le 2 Déc 2017
There might be some formula based on the theory. Please provide the formula also to help you in a better way. For the time being, here is the simple code to find du/dv,
for i=1:size(U,1)-1
for k=1:size(U,2)-1
C(i,k)=(U(i,k)-U(i+1,k+1))/(U(i,k)-U(i+1,k+1));
end
end
1 commentaire
Arkadiy Sakhartov
le 5 Déc 2017
Modifié(e) : Arkadiy Sakhartov
le 5 Déc 2017
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!