how can i plot this

1 次查看(过去 30 天)
jairhus matt
jairhus matt 2023-3-20
23423423

回答(2 个)

Eric Delgado
Eric Delgado 2023-3-20
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)

Image Analyst
Image Analyst 2023-3-20
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)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by