how may i change the marker color
조회 수: 20 (최근 30일)
이전 댓글 표시
plot(frequency(41),value(:,1), LineStyle, 'r')
I am trying to change the color if this plot but I am getting an error.
댓글 수: 4
답변 (1개)
Cris LaPierre
2022년 8월 24일
댓글 수: 2
Cris LaPierre
2022년 8월 24일
Hard to help without seeing the code you have written. Could you share?
x = 0:pi/10:2*pi;
y1 = sin(x);
y2 = sin(x-0.25);
y3 = sin(x-0.5);
figure
plot(x,y1,'g',x,y2,'b--o',x,y3,'c*')
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!