How can I create a sparse matrix containing (3,3) block matrices on the main diagonal and on diagonals below and above the main diagonal without using loops?
이전 댓글 표시
The idea is to create a (3m,3m) sparse matrix with small (3,3) matrices on the main diagonal and on diagonals below and above the main diagonal. By saying this, I want that each time the main diagonal of the small (3,3) matrix is on the main diagonal or on another diagonal respectively. There is no gap between the small (3,3) matrices on the diagonals. How can I use the functions sparse, spdiags, blkdiag to create this matrix? If there are other functions guaranteeing sparsity that's fine.
채택된 답변
추가 답변 (1개)
Iain
2013년 5월 20일
0 개 추천
You can initialise a sparse matrix as:
matrix = sparse(zeros(3*m,3*m));
If you then use it as:
matrix(1:3,1:3) = [a b c; d e f; g h i];
matrix(3+1:3,3+1:3) = [j k l; m n o; p q r];
... etc you will get what I think you're asking for.
카테고리
도움말 센터 및 File Exchange에서 Sparse Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!