how can I convert a binary matrix to a linear data?
조회 수: 70 (최근 30일)
이전 댓글 표시
I have a matrix A of size 3X2. Where A(1,1)=1, A(1,2)=0, A(2,1)=1, A(2,2)=1, A(3,1)=0, A(3,2)=1. I need the data in linear array like 1 0 1 1 0 1 please help me...
댓글 수: 0
채택된 답변
Pedro Villena
2013년 1월 16일
편집: Pedro Villena
2013년 1월 17일
reshape(A',1,[])
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!