MATLAB: How to show the intersecting points of these two functions? It is required to use the command ezplot to plot these functions.

intersectionsplotting

clf
syms x y
f1=((1/2)*sin(x*y)-(y/(4*pi))-(x/2));
f2=(1-(1/(4*pi)))*(exp(2*x)-exp(1))+((exp(1)*y)/pi)-(2*exp(1)*x);
ezplot(f1,[-5,5,5,-20])
hold on
ezplot(f2,[-5,5,5,-20])
grid on

Best Answer

plot(x_of_intersection, y_of_intersection, 'o')
or
viscircles([x_of_intersection, y_of_intersection], a_radius_goes_here)