필터 지우기
필터 지우기

How To... Plot Multiple Data Sets on the Same plot

조회 수: 1 (최근 30일)
Hassanean
Hassanean 2017년 9월 16일
댓글: Hassanean 2017년 9월 17일
  댓글 수: 2
per isakson
per isakson 2017년 9월 16일
Doc says:
plot(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn)
Hassanean
Hassanean 2017년 9월 16일
Thanks

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

답변 (1개)

Jan
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-*');

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by