histc problem
조회 수: 4 (최근 30일)
이전 댓글 표시
Hi, I have a matrix as follows:
I =
1 1 1 8 8 1 2
1 8 8 8 8 2 1
1 8 8 8 2 1 1
1 8 8 8 1 1 1
2 2 2 1 1 1 1
2 2 2 1 1 1 1
then the following code give me a error:
index= I==8; histc(index(:),1)
gives the follwing error.
??? Error using ==> histc First input must be non-sparse numeric array.
How to solve this?
Thanks
댓글 수: 0
답변 (1개)
Walter Roberson
2011년 6월 7일
I'm not sure what you think you are going to accomplish with that, but
index = 0 + (I==8);
histc(index(:),1)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!