Plot two functions at different intervals

조회 수: 6 (최근 30일)
Laura Ferrer Pascual
Laura Ferrer Pascual 2020년 11월 7일
답변: Ameer Hamza 2020년 11월 7일
Hi!
I have two sets of data that I want to plot at the same graphic but at different intervals. I have defined set 1 as BE and I want to plot it from 0 to 1000 and I have defined set 2 as RE and I want to plot it from 1000 to 4000. How can I do it?

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 11월 7일
This shows an example
BE = rand(1, 1001);
RE = rand(1, 3001)+2;
figure()
axes();
hold on
plot(0:1000, BE);
plot(1000:4000, RE);

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by