how to plot two variables having different length y1 it's size (1x1500) and y2 (1x1200) at the same figure according to steps in time (X-axis)
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ahmed Gharieb naga
le 1 Juil 2023
Réponse apportée : Voss
le 1 Juil 2023
I'm actual doning random walk with different lengths and i want every variables has a color like this ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1424203/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1424203/image.png)
0 commentaires
Réponse acceptée
Voss
le 1 Juil 2023
% two random vectors of different lengths
y1 = cumsum(randn(1,1500));
y2 = cumsum(randn(1,2000));
% plot them
plot(y1)
hold on
plot(y2)
xlabel('Step #')
ylabel('Position')
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Graphics Objects dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!