MATLAB: WriteaMALT​ABscriptfil​eforplotti​ngthebelow​surfacesby​coloringth​esurfacewi​thacolorma​p, appropriately naming the axis and titling the plot. 1. z = sin(x+y)/ x^2+y^2 for (x,y) ∈ [−2,2]×[1,3]

esurfhomeworksurf

how can I solve this question

Best Answer

syms x y
h=ezsurf(sin(x+y)/(x^2+y^2))
xlim([-2 2])
ylim([1 3])
Related Question