how to plot in two axes
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
hi, i have two axes on my gui file, and i wanna plot different graphs to these axes, but i cant control where to plot, it plots wrong on axis, but when i try:***bold***
handlename=findobj(gcbf,'Tag','axes1')
plot(handlename,[..],[..])
matlab returns the error "vectors must be same lengths."
what is the problem?
thanks in advance
Réponses (1)
Azzi Abdelmalek
le 7 Sep 2013
Modifié(e) : Azzi Abdelmalek
le 7 Sep 2013
plot(x,y)
% x and y should have the same number of element
If you want to plot on axes1
plot(handles.axes1,x,y)
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!