plot corresponding rows of 2 matrices

2 vues (au cours des 30 derniers jours)
MatG
MatG le 8 Sep 2020
Is there an easy way to use plot, or a similar plottign command, to plot rows of matrix X as x value vs rows of matrix Y as y value?
x=[1 2 3 4;1.5 2 3.4 4.3];
y=2*[1 2 3 4;1.5, 2 3.4, 4.3];
% I want to replace the following for loop
for i = 1:siz(x,1)
plot(x(i,:),y(i,:));hold on;
end

Réponse acceptée

madhan ravi
madhan ravi le 8 Sep 2020
plot(x.', y.')

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by