MATLAB: How to plot (x,y) subjected to any function.

plot

How to plot (x,y) subjected to the equation cot(y) – cot(x) = 1.

Best Answer

fimplicit(@(x,y) cot(y)-cot(x)-1)