Error at workspace in matlab
조회 수: 3 (최근 30일)
이전 댓글 표시
I am using 1264x1984 rgb frames.When i want to see workspace then "Cannot display summaries of variables with more than 524288 elements" this is shown. How to resolve above problem in matlab?
댓글 수: 2
Walter Roberson
2018년 9월 18일
You could create a temporary variable
temp = sub_tracted_frame(1:333, 1:523, 1:3);
and examine that. It would have the same aspect ratio. But it would just be a big numeric list of values; it is not clear there is any point to looking at all of it.
채택된 답변
Walter Roberson
2018년 9월 18일
You cannot resolve that problem with any current release of MATLAB.
You could suggest a technical enhancement. Other people have suggested the same enhancement over the years, so it might not be implemented any time soon.
See also the solution (so to speak) at https://www.mathworks.com/matlabcentral/answers/418961-how-to-increase-number-of-virtual-models-in-student-licence#answer_336765
You might find it easier to just write a short summarizing routine that you invoke on the variable.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!