Gradient of a vector

20 views (last 30 days)
Bhaskarjyoti
Bhaskarjyoti on 28 Aug 2013
I have 3 vectors X(i,j);Y(i,j) and Z(i,j).Z is a function of x and y numerically. I want to plot the gradient of z with respect to x and y. Can anyone suggest me how to find the gradient in the above case? Thanks, -Bhaskar

Accepted Answer

Walter Roberson
Walter Roberson on 28 Aug 2013
Is it a rectangular grid? [X, Y] = ndgrid(Xv, Yv) for some vector Xv, Yv ?
If so, then
gradient(Z, xv, yv)
  2 Comments
Bhaskarjyoti
Bhaskarjyoti on 30 Aug 2013
yeah it is a rectangular grid. And it works. Thanks a lot.
Muthu Annamalai
Muthu Annamalai on 30 Aug 2013
@walter I love the gradient + quiver plots. Reminds me of the swirling fields.. http://www.mathworks.com/help/matlab/ref/gradient.html?searchHighlight=gradient

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 28 Aug 2013
Wouldn't it be diff(Z) ./ sqrt(diff(X).^2 + diff(Y).^2) or something pretty similar to that?
  1 Comment
Bhaskarjyoti
Bhaskarjyoti on 30 Aug 2013
Thanks. I could do it by gradient(z,x,y).

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!