Plotting the given Trigonometric functions
Ältere Kommentare anzeigen
Can someone help me on plotting the function ysin(2x) = xcos(2y)?
Akzeptierte Antwort
Weitere Antworten (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 Kommentare
Adrian Oblena
am 27 Nov. 2020
KSSV
am 27 Nov. 2020
Use pcolor instead of surf. Also have a look on contour.
Kategorien
Mehr zu Line Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

