Info
This question is closed. Reopen it to edit or answer.
How can i plot these multiple plots on the same axes the code i currently have does not work?
1 view (last 30 days)
Show older comments
dataDays=inputdlg('How many days of data would you like to graph');
cla(handles.axes5);
for e=1:str2num(dataDays{1})
d(e)=uiimport;
end
hold all;
for e=1:str2num(dataDays{1})
plot(handles.axes5,d(e).data);
end
0 Comments
Answers (1)
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!