Filter löschen
Filter löschen

plotting the trajectories of three particles in same graph

3 Ansichten (letzte 30 Tage)
Ls
Ls am 10 Aug. 2021
Kommentiert: Image Analyst am 10 Aug. 2021
I have three particles with x and y values of each particle, I neet to plot all three trajectories in same graph. How can I do it?

Akzeptierte Antwort

Image Analyst
Image Analyst am 10 Aug. 2021
Try this:
plot(x1, y1, 'r-', 'LineWidth', 3);
hold on;
plot(x2, y2, 'g-', 'LineWidth', 3);
plot(x3, y3, 'b-', 'LineWidth', 3);
grid on;
xlabel('x', 'FontSize', fontSize);
ylabel('y', 'FontSize', fontSize);
title('Demo by Image Analyst', 'FontSize', fontSize);
legend('y1', 'y2', 'y3');
  4 Kommentare
Ls
Ls am 10 Aug. 2021
Its variable t and with respect to t there is variable x and y for each three particle.
Image Analyst
Image Analyst am 10 Aug. 2021
If x and y are parameterized variables depending on t, then the first code snippet I sent you will work.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by