Plotting functions anf computing gradient
Show older comments
i am currently trying to plot a function and the compute the graident of f using the jacobian function
Plot the function f (x, y) = x sin(xy) − y sin(5y).
Compute the gradient of f in using the jacobian function
my current code is shown below yet im getting erors
f = @(x,y) x*sin(x,y) - y*sin(5*y);
syms x y
jacobian([x*sin(x,y - y*sin(5*y))])
gradient(x*sin(x,y - y*sin(5*y)))
Accepted Answer
More Answers (0)
Categories
Find more on Conversion Between Symbolic and Numeric 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!