필터 지우기
필터 지우기

Why do I get markers on the second axis and how do I stop them?

조회 수: 2 (최근 30일)
Harry Smith
Harry Smith 2018년 1월 1일
편집: Harry Smith 2018년 1월 1일
Here is the simple code but I get different markers on the second axis? Thanks Harry Smith
hold on
yyaxis left
plot(bestScores,'b','LineWidth',2,'color','b');
yyaxis right
plot(bestPercent,'b','LineWidth',2,'color','r');

채택된 답변

ANKUR KUMAR
ANKUR KUMAR 2018년 1월 1일
편집: ANKUR KUMAR 2018년 1월 1일
You can do use the same marker properties. This is just an example to plot the similar using the same program with using different markers
bestScores=rand(1,5)
bestPercent=bestScores*rand(1)
yyaxis left
plot(bestScores,'b-+','LineWidth',2);
yyaxis right
plot(bestPercent,'r-*','LineWidth',2);
One more thing I want to suggest you is that there is no need to define color properties ('color') in plot.
plot(bestScores,'b','LineWidth',2,'color','b');
Second (if you have't mentioned x axis values) or third (if mentioned x axis values) argument is by default taken as line color.
  댓글 수: 2
Harry Smith
Harry Smith 2018년 1월 1일
Thanks, how do I stop the markers?
Harry Smith
Harry Smith 2018년 1월 1일
편집: Harry Smith 2018년 1월 1일
Found the answer: '-' without a marker thanks for your help
plot(bestScores,'-','LineWidth',2);

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by