How can i plot these multiple plots on the same axes the code i currently have does not work?
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
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
Réponses (1)
Walter Roberson
le 28 Fév 2012
hold(handles.axes5,'all');
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!