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

2 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

KSSV
KSSV el 31 de Mayo de 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')

Más respuestas (0)

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by