Plotting the given Trigonometric functions
Show older comments
Can someone help me on plotting the function ysin(2x) = xcos(2y)?
Accepted Answer
More Answers (1)
x = linspace(-pi,+pi);
y = x ;
[X,Y] = meshgrid(x,y) ;
Z = Y.*sin(2*X)-X.*cos(2*Y) ;
surf(X,Y,Z)
colorbar
2 Comments
Adrian Oblena
on 27 Nov 2020
KSSV
on 27 Nov 2020
Use pcolor instead of surf. Also have a look on contour.
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
