Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Error in matlab 13 but not in matlab 10 with respect to imshow
조회 수: 1 (최근 30일)
이전 댓글 표시
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146994/image.png)
I am getting error as I shown please help me !!
댓글 수: 2
Geoff Hayes
2015년 2월 1일
Anoop - what is I and what is N? Presumably the former is the image that you want to show, but what is the latter?
The error message is telling you that the inputs that you are using for the imshow function are no longer valid which may make sense given that there could have been some changes (to this function) from R2010a to R2013a.
Image Analyst
2015년 2월 1일
Release R2014b is version 8.4. What versions are you talking about with MATLAB 10 and 13? Give release numbers with the years in them.
답변 (1개)
Jan
2015년 2월 2일
The error message mentions this as failing command:
imshow('imageupload.jpg', handles.axes1);
So I guess this might work:
imshow('imageupload.jpg', 'Parent', handles.axes1);
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!