how can i plot this
Afficher commentaires plus anciens
Réponses (2)
Try this...
x1 = -2*pi:.01:0;
x2 = .01:.01:2*pi;
y1 = [sin(x1).^2, sin(x2).^3];
y2 = [cos(x1).^3, cos(x2).^2];
plot([x1, x2], y1)
hold on
plot([x1, x2], y2)
This looks like a homework problem. If you have any questions ask your instructor or read the link below to get started:
Obviously we can't give you the full solution because you're not allowed to turn in our code as your own.
Here is a start. Add the other equations over the appropriate ranges:
x = linspace(0, 2*pi, 36);
y1 = sin(x) .^ 2;
y2 = cos(x) .^ 3;
plot(x, y1, 'bo-', 'LineWidth', 2)
hold on;
grid on;
plot(x, y2, 'r*-', 'LineWidth', 2)
Catégories
En savoir plus sur Mathematics 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!

