It stopped giving me the error and I didn't change anything. It was really weird, I just deleted a file that uses reshape but that it has nothing to do with the function I'm running and it's not even in the same folder. I don't know what happened but it's fine now.
Error using RESHAPE but I'm not using reshape
조회 수: 1 (최근 30일)
이전 댓글 표시
When executing one of my functions I'm getting:
Error using reshape To RESHAPE the number of elements must not change.
But my function doesn't even use reshape, any ideas of what is going on here? I mean, what other MATLAB function am I maybe using incorrectly that could be throwing this error?
댓글 수: 5
Cedric
2013년 7월 23일
I don't think that Jan wanted to suggest that you were lying, but sometimes when we debug code, we check things out by e.g. commenting a few lines at different/random places, and we end up being unable of reproducing the bug when we want to ;-)
채택된 답변
Sean de Wolski
2013년 7월 22일
dbstop if error
Then run your code. This will stop with the debugger on the offending line and you will be able to see what is happening.
댓글 수: 1
per isakson
2013년 7월 23일
Make it a habit to use the debugger. It's good. Here are some links on debugging in Matlab
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Function Creation에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!