Calculate the Gradient of a given function using the forward and central quotients.

1 view (last 30 days)
I am very bad at this, it would be hard for me to calculate it even for only one variable, but now that I have to calculate the Gradient i am completely lost.
Please help me out, any sort of help is very much appreciated.
My failed code:
function f1x = vordiff(f,x,h,y,z)
%Vorwärtsdifferenzenquotienten
function f = f(x,y,z)
f = (4*x+3*y+2*z)*e^(-3*x^2)-4*y^2-8*x*y-2*z^2
end
f1x = (f(x+h)-f(x))/h;
f1z = (f(z+h)-f(z))/h;
f1y = (f(y+h)-f(y))/h;
end

Answers (1)

KSSV
KSSV on 13 Jan 2021
function f1x = vordiff(f,x,h,y,z)
%Vorwärtsdifferenzenquotienten
syms x y z ;
f = (4*x+3*y+2*z)*e^(-3*x^2)-4*y^2-8*x*y-2*z^2
fx = diff(f,x) ;
fy = diff(f,y) ;
fz = diff(f,z) ;
end
  4 Comments
kai kai
kai kai on 13 Jan 2021
Thank you so so much you saved me. Very helpful. I don't know if you can put it as an answer so that I can vote it as best answer.
kai kai
kai kai on 13 Jan 2021
And the results were exactly the same, I don't know if this is how it is supposed to be.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!