change contrast(brightness) of the scatter plot
조회 수: 2 (최근 30일)
이전 댓글 표시
a=1; b=200; scatter(a,b,1000,'r','filled')
how can i modify the contrast(to light red color or dark red color)
댓글 수: 0
답변 (1개)
Walter Roberson
2012년 12월 13일
I'm not sure what you mean by "contrast" in this case? You can set() the color of the underlying axes, or you can use an RGB triple when you set the color.
scatter(a, b, 1000, [0.5 0 0]); %medium red
댓글 수: 0
참고 항목
카테고리
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!