Info
この質問は閉じられています。 編集または回答するには再度開いてください。
how to plot in two axes
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (1 件)
Azzi Abdelmalek
2013 年 9 月 7 日
編集済み: Azzi Abdelmalek
2013 年 9 月 7 日
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)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!