How to plot multiple curves on the same graph
조회 수: 86 (최근 30일)
이전 댓글 표시
채택된 답변
Keshav
2022년 7월 8일
Hi, you can use the hold on function to plot both line on same graph. you can refer to the below code.
x = [1 2 3 4 5];
y = [7 8 9 10 11];
plot(x,y)
hold on
plot(y,x)
hold off
댓글 수: 0
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!