How to to add column 3rd+4th, 6th+7th and 9th+10th from a 8x12 matrix?
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to add column 3rd+4th, 6th+7th and 9th+10th from the matrix B. I want to apply the rule for a 2D sparse matrix.
A = [1,2,3;4,5,6]
N=4;
B = kron(eye(N),A)
댓글 수: 0
답변 (1개)
Jan
2022년 11월 29일
C1 = B(:, 3) + B(:, 4);
C2 = B(:, 6) + B(:, 7);
C3 = B(:, 9) + B(:, 10);
Or maybe:
C = B(:, [3,6,9]) + B(:, [4,7,10])
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!