MATLAB: How can i plot a mathematical expression of x and y

plotting

Hi
Could you help me please, I have this expression and I want to plot it (1+x)^2 + (2-y)^2 = 4
with regards.

Best Answer

You need to use fimplicit() to directly draw such a function.
fimplicit(@(x,y) (1+x).^2 + (2-y).^2 - 4)
Related Question