I am trying to assemble a matrix in which I would like to put small matrices into a big one but I don't know how to do that,
I know that I have to define the big matrix first and then show put the small ones inside
for example I have k1=[1 -1; -1 1] , K2=[1 -1; -1 1] and the define bigK in which bigK=zeros(5,5) and in the end I want it to be like bigK = [ 1 0 -1 0 0; -1 0 1 0 0; 0 0 0 0 0; 0 0 0 0 0; 0 0 0 0 0]
in which the small matrices will assemble in diagonal way
how I can do it using a for loop ?

 Réponse acceptée

madhan ravi
madhan ravi le 25 Nov 2018

0 votes

result=blkdiag(k1,K2)

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by