Plotting the given Trigonometric functions
Afficher commentaires plus anciens
Can someone help me on plotting the function ysin(2x) = xcos(2y)?
Réponse acceptée
Plus de réponses (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 commentaires
Adrian Oblena
le 27 Nov 2020
KSSV
le 27 Nov 2020
Use pcolor instead of surf. Also have a look on contour.
Catégories
En savoir plus sur Line Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

