i need to plot two sets of data on the same y axis but have different x axis values for them, there are two problems with this i only have data for one half of the y axis for one set of data and another half for the other set.
I need to learn how to do an interrupted y axis and maybe how to plot non values?
figure(1)
hold on
tiledlayout(3,1)
nexttile
plot(x,y,'ro--')
title('fishing line')
xlabel('strain')
ylabel('stress in Mpa')
nexttile
plot(xx,y,'bo--')
title('rubber')
xlabel('strain')
ylabel('stress in Mpa')
can anyone help me?
i attached a jpg of how my graphs look now
0 Comments
Sign in to comment.