How to plot two vectors of different lengths in MATLAB?

2 views (last 30 days)
Hello everyone,
I have a vector Y where its length is smaller than the length of a vector X.
I want to take just the first elements from vector X which is correponding the elements of vector Y to plot them (X and Y) together. In other words, I want to delete the elements on vector X which makes the length of X exceeds the length of Y.
Thanks in advance dears!

Accepted Answer

Walter Roberson
Walter Roberson on 10 Feb 2021
plot(X(1:length(Y)), Y)

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!