MATLAB: Plotting 2 vectors of different

plot vector

Hi, i got one vector that is 120 rows whilst the other is 60. How can i plot them in the same figure?

Best Answer

with hold on.
figure
plot(x1)
hold on
plot(x2)
Related Question