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

3 次查看(过去 30 天)
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.

采纳的回答

KSSV
KSSV 2022-5-31
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')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by