Why does my line plot in MATLAB show a color gradient of black, green, and red?
조회 수: 1 (최근 30일)
이전 댓글 표시
MathWorks Support Team
2016년 4월 12일
편집: MathWorks Support Team
2016년 4월 15일
As seen in the attached image, I am trying to create a line plot with a particular color but it is displayed with a color gradient, predominantly of black, green, and red. This happens even if the default Color property is overridden. How can this be fixed?
채택된 답변
MathWorks Support Team
2016년 4월 15일
This behavior is a known issue with certain Intel drivers. It has been addressed in the recent 4380 driver. There are two workarounds:
1) Use the OpenGL hardware basic mode
opengl hardwarebasic
2) Disable the align vertex centers property of the line
h=line(1:10);
h.AlignVertexCenters='off';
댓글 수: 1
Image Analyst
2016년 4월 14일
How about making it easy for us by providing a link to the "recent 4380 driver"?
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!