what is code in MATLAB partial derivative of z=sin(x+y) ?

Answer :Example 1: Code in MATLAB partial derivative of z=sin(x+y)% Matlab program to find partial derivative of z=sin(x+y) clear all close all syms x y z=sin(x+y) % given function z =f(x,y) zx=diff(z,x) % differentiation of f w.r.t x zy=diff(z,y) %…

This Question has been answered. 

Please Login or Register to See The Answer