MATLAB: Plotting the given Trigonometric functions

plot

Can someone help me on plotting the function ysin(2x) = xcos(2y)?

Best Answer

You can use fimplicit()
fun = @(x, y) y.*sin(2*x) - x.*cos(2*y);
fimplicit(fun, [-10 10 -10 10])