extracted data from array
조회 수: 3 (최근 30일)
이전 댓글 표시
I have aproblem A = [0 5 3 0 0 1 0 2 4 1 1 0 4 0 1]; I want extract (0's and 1's) from A but not all (0's and 1's) I want extract until a certin length I use B = A(A==0|A==1) but in it B = all 0's and1's for example: I want B is extracted until length (B) = 5
댓글 수: 0
채택된 답변
Wayne King
2012년 2월 21일
Why not just do:
A = [0 5 3 0 0 1 0 2 4 1 1 0 4 0 1];
B = A(A==0|A==1);
B = B(1:5);
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!