merging two plots of different program
조회 수: 1 (최근 30일)
이전 댓글 표시
how can i call another program so that i merge plots of these two programs.
댓글 수: 4
Walter Roberson
2019년 8월 2일
If you are using plot() of a graph() or digraph() object, then you can just
hold on
and plot additional items -- plot() of graph() and digraph() objects use regular axes
채택된 답변
Star Strider
2019년 8월 1일
I woiuld save the plot created in the first script as a .fig file using the savefig function, then in the second script use openfig to load it into that script’s workspace and add whatever you want to it using the hold function. Then use savefig on it again, if you want to save the new figure as a .fig file.
댓글 수: 0
추가 답변 (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!