matlab画面问题,一条直线怎样分两段用不同颜色表示

2024-12-19 23:43:33
推荐回答(1个)
回答1:

a=round(rand(1,20));
stairs(1:10,a(1:10),'r');
hold on
stairs(11:20,a(11:20),'g')