Info
此问题已关闭。 请重新打开它进行编辑或回答。
axes displays two vector values
1 次查看(过去 30 天)
显示 更早的评论
hi, i have a problem with axes in gui, when i debugging that axes it shows two vector values. how can i proceed when it shows error in that........ pls give any idea...
4 个评论
Walter Roberson
2011-6-28
Are you saying that handles.axes1 is a vector with two values? If so then likely what-ever code you used to assign to handles.axes1 is wrong, but we would have to see that code to tell you what to do.
回答(1 个)
Walter Roberson
2011-6-28
plotyy() returns two axes values as its first output.
Did you perhaps do an assignment such as
h = plot(Y);
If you did, then h would not be an axes handle; it would be a vector of lineseries handles.
3 个评论
Walter Roberson
2011-6-28
Sorry, you will have to search the code to figure out how it is assigned. handles.axes1 can be assigned different things in different programs, so we do not know what it is in your program.
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!