FALL
FALL

Reputation: 65

How to combine multiple plots with different x-axis and different y-axis

I need to combine multiple plots that have different x-axis and different y-axis but the same dimensions.

For instance:

x1 contains  100 values;y1 contains 100 values


x2 contains 100 values;y2 contains 100 values



xn contains 100 values;yn contains 100 values

Upvotes: 0

Views: 421

Answers (1)

FALL
FALL

Reputation: 65

figure;

for  j=1:100

    plot (x(j),y(j));

    hold on;
end

hold off;

Upvotes: 1

Related Questions