Plotting three different datasets using plot3 function...how can I plot them each in a different color?
조회 수: 2 (최근 30일)
이전 댓글 표시
My question is very simple. I have the following code:
plot3(Ch15,Ch13,Ch9)
How can I plot Ch15, Ch13, and Ch9 each in a different color on the same plot? Thanks for the help!
댓글 수: 0
답변 (2개)
Sachin Ganjare
2012년 10월 25일
You can use 'axes colororder' property.
Refer below links for details:
댓글 수: 0
Matt J
2012년 10월 25일
편집: Matt J
2012년 10월 25일
Your question isn't entirely clear as written. When you have a statement like
plot3(Ch15,Ch13,Ch9),
the Ch15,Ch13 and Ch9 do not correspond to different lines. They are the x,y,z of the same space curve.
Nevertheless, you can put multiple curves on the same plot by supplying multiple triples, like below. MATLAB will automatically provide different colors for them, or you can specify your own, e.g.,
t = 0:pi/50:10*pi;
figure(1);
plot3(sin(t),cos(t),t, t,t,t)
figure(2);
plot3(sin(t),cos(t),t,'r',t,t,t,'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!