The actual 3dplot of the function: Use something like:
[x y] = meshgrid(-5 : .1 : 5); (format is lowbound, interval, highbound - see how it looks)
z = (4-3x)./y; (note ./ not /)
plot3(x,y,z);
Finding the tangent plane is more a math problem:
Let F(x,y,z) = yz-4+3x find tangent at P0 = (-2,5,2) (z obtained by plugging in x and y)
The equation of the plane is derived from delF•(r - r0) where r0 points to P0 This is true because the tangent plane is perpendicular to the local normal (delF)
In cartesian coordinates:
Fx(x-x0) + Fy(y-y0) + Fz(z-z0) = 0 where Fi is the partial derivative of F with respect to i at the point.
Once you have that equation you could plot the plane using the same technique with a meshgrid and plot3. If you want to put them on the same graph, type hold on in the workspace before plotting second graph.