why is it happen?
조회 수: 1 (최근 30일)
이전 댓글 표시
when i plot figure with 3 or 4 curves, it appears the same line style.
댓글 수: 0
답변 (1개)
madhan ravi
2018년 12월 22일
편집: madhan ravi
2018년 12월 22일
"why is it happen?"
Obviously you have used the same linestyle inside the loop use the below way to distinguish:
c={'-*m','-^k','-or','-sq'} % use different markers to distinguish
plot(..,c{i}) % inside loop
^^^^-should be in the place of line style
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Curve Fitting Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!