Problem in Plot diagrams
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to draw three diagram in one plot and mark them with three different shape such as line, dash, star...
the number of my data is high so the star diagram is very bad.(the up green diagram in picture that i sent)
how i can plot a beautiful star diagram? please see the attachment
댓글 수: 0
답변 (1개)
Alessandro Masullo
2015년 1월 23일
I cannot see your attachment, but you can use any char you wish for your plot, just using text instead of plot:
x = linspace(0,1);
y = x.^2;
figure,plot(x,y,'*')
figure,text(x,y,'f')
figure,text(x,y,'@')
댓글 수: 0
참고 항목
카테고리
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!