Error using reshape To RESHAPE "the number of elements must not change"
조회 수: 1 (최근 30일)
이전 댓글 표시
![1.JPG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/200237/1.jpeg)
댓글 수: 3
Walter Roberson
2019년 1월 6일
You tried everything except telling us what size(CH) is and what size(bICH5) is.
채택된 답변
Image Analyst
2019년 1월 7일
Looks like you want seq1 to be a row vector. So try omitting the number of columns:
seq1 = reshape(bICH5, 1, []);
Other errors will probably follow so I recommend you really try to understand what is going on rather than just applying random band-aid fixes like this.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!