Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
How can I plot a single graph from a file that contains sub files?
조회 수: 1 (최근 30일)
이전 댓글 표시
datafiles = dir('datarus*_qsStruc.mat');
for ii = 1:length(datafiles)
load(datafiles(ii).name)
load(datafiles(ii).name)
time = qsStruc.time;
u = qsStruc.u;
v = qsStruc.v;
I want to plot U vs time for each of ii's in a single graph by giving each distinctive feature rather than subplotting them? but can't figure out.
댓글 수: 0
답변 (1개)
Walter Roberson
2012년 8월 29일
You may wish to use the MATLAB File Exchange contribution named "plt"
댓글 수: 1
Walter Roberson
2012년 8월 29일
Compared to MATLAB's plot() routine, Paul's plt() routine has a greatly expanded ability to generate distinctive features for plot lines, by varying colors and markers and line styles.
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!