Distinct colors for plotting two columns of a single matrix
조회 수: 8 (최근 30일)
이전 댓글 표시
I have vector called x(500,2). I plot(x) and I get a blue line for column 1 and a green line for column 2. I would like a red line for contrast purposes for column 2.
댓글 수: 0
채택된 답변
the cyclist
2011년 2월 2일
One of several ways:
x = rand(4,2);
h = plot(x);
set(h(1),'Color','b');
set(h(2),'Color','r');
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Scatter Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!