Find the gradient vector field of f . f (x,y,z)= x^2ye^y/z

71 views (last 30 days)
find the gradient vector field of f (x,y,z)=x^2ye^y/z

Accepted Answer

Dyuman Joshi
Dyuman Joshi on 13 May 2022
Edited: Dyuman Joshi on 20 Jan 2024
syms f(x,y,z)
f = x^2*y*exp(y/z)
f = 
grad = gradient(f).'
grad = 
  6 Comments
Dyuman Joshi
Dyuman Joshi on 15 May 2022
Edited: Dyuman Joshi on 15 May 2022
1 - You should have included the image in the question to get the desired answer quickly
2 - I have edited my answer, check it now

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!