Color in Scatter function
이전 댓글 표시
I am trying to plot 3 sets of data on the same scatter in 3 different colors but one of them doesn't have a letter code. I need one set unfilled black circles, one set filled grey circles, and one set filled black circles. Whenever I try to plot the grey though I get the error "There is no color property on the Scatter class". I've tried plotting with the plot function to get around this but I get a jumble of lines instead of dots. Does anyone know how to fix this? I've been working around it by selecting the points in the plotter and changing their color but that's tedious and annoying. I've including the code below. Thanks!
scatter(cp1,bd1, "k") % plot connected porosity vs bulkdensity of vdp1 set
hold on
scatter(cp2, bd2, 'color', [0.5 0.5 0.5], 'filled')
hold on
scatter(cp3, bd3, "k", 'filled')
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Scatter Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

