How can i plot these multiple plots on the same axes the code i currently have does not work?

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

This question is closed.

Tags

Asked:

on 27 Feb 2012

Closed:

on 20 Aug 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!