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!