How To... Plot Multiple Data Sets on the Same plot
이전 댓글 표시

댓글 수: 2
per isakson
2017년 9월 16일
Doc says:
plot(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn)
Hassanean
2017년 9월 16일
답변 (1개)
Jan
2017년 9월 16일
Or:
plot(1:10, rand(1, 10), 'r-+');
hold('on');
plot(1:10, rand(1, 10), 'g-d');
plot(1:10, rand(1, 10), 'b-*');
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!