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
2 ビュー (過去 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!