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)
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

Answers (1)

Walter Roberson
Walter Roberson on 28 Feb 2012
hold(handles.axes5,'all');

This question is closed.

Tags

Community Treasure Hunt

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

Start Hunting!