Please how can I store values of variable size vectors inside a loop for
조회 수: 1 (최근 30일)
이전 댓글 표시
image processing
댓글 수: 7
Stephen23
2018년 8월 18일
@Mohamed ouahidi: what values does n have? If it is less than three then that loop will not run.
채택된 답변
Amir Xz
2018년 8월 18일
" x( idxX(k) + 1 : idxX((k+1)) )" is a vector, so it should store in a vector too.
Use this one:
subH(k,:) = x( idxX(k) + 1 : idxX((k+1)) )';
댓글 수: 7
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!