Azzera filtri
Azzera filtri

Double y axis plot when two data sets are not starting from the same time

4 visualizzazioni (ultimi 30 giorni)
I have two data sets A and B. A = 20x1 and B=11x1. I want to make double y axis plot with these datasets. But the plot should be start with A at first. From the 10th point B will start. Means A and B will not start together.

Risposta accettata

KSSV
KSSV il 31 Mag 2022
A = rand(20,1);
B = rand(11,1);
idx = 1:length(A) ;
plot(idx,A,'r')
hold on
plot(idx(10:end),B,'b')
legend('A','B')

Più risposte (0)

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by