interrupted axis and plotting non values

7 vues (au cours des 30 derniers jours)
tyler hollings
tyler hollings le 10 Déc 2020
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--')
% breakyaxis([0 4])
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

Réponses (1)

Srivardhan Gadila
Srivardhan Gadila le 18 Déc 2020
As per my understanding from your question, I'm replicating the said information using the below code:
x1 = 1:5;
y1 = 1:5;
x2 = 8:13;
y2 = 2:7;
plot(x1,y1,x2,y2)
% or plot(x1,y1) use hold on then plot(x2,y2) and use hold off
Refer to the documentation of plot function for more information and examples.

Catégories

En savoir plus sur Graphics Objects dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by