필터 지우기
필터 지우기

displaying specific range of data with different color in a plot

조회 수: 11 (최근 30일)
Mayowa
Mayowa 2014년 11월 26일
댓글: SAIF MEHDI 2020년 5월 5일
I have a data say x and y vectors. I want to plot x and y, however I want certain part to have different color from the others. How can I get it done.

답변 (2개)

Thorsten
Thorsten 2014년 11월 26일
I know of no other way as splitting the x into those different parts that you need to color differently. E.g., to plot negative values in red and positive values in blue:
x = -10:0.1:10;
plot(x(x<=0), sin(x(x<=0)), 'r', x(x>=0), sin(x(x>=0)), 'b')

ben hirsig
ben hirsig 2018년 3월 21일
편집: ben hirsig 2018년 3월 21일
Here's my solution. Disregard the 'if true' 'end' statements. I'm not sure how to get rid of them without changing the rest to just simple text and not code.
if true
figure()
hold on
scatter(t(1:278), predicted(1:278), 'or'); % Plot red circles for elements 1:278
scatter(t(279:end), predicted(279:end), 'ob'); % Plot blue circles for the remaining elements
end
  댓글 수: 1
SAIF MEHDI
SAIF MEHDI 2020년 5월 5일
Hi,
I tried your method but it drew another line instead of completing the rest of the plot
plot(BAPred(1:300))
hold on
plot(BAPred(300:end))

댓글을 달려면 로그인하십시오.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by