replace value in many colone to one value
조회 수: 1 (최근 30일)
이전 댓글 표시
i have matrix witn n line row
mtx = [1 1 0 1;
2 0 1 1;
3 1 1 1;
4 1 1 0;
5 1 1 0 ]; % and so on (n rows )
and i want to have this to join value colone 2 and 3 and 4 in one colone
mtx= [1 101;
2 011;
3 111;
4 110;
5 110];
댓글 수: 0
답변 (2개)
Bruno Luong
2020년 8월 19일
편집: Bruno Luong
2020년 8월 19일
Single line
mtx*[1 0; 0 100; 0 10; 0 1]
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!