Building the Matrix from the two matrices
Mostrar comentarios más antiguos
Hey, I am stuck in building the Matrix for my project "Thermal Network''. The problem is how to buid the Matrix from the two matrices of same dimensions.
Details goes here;
LA = [ 0 77 0 0; 77 0 15 0; 0 15 0 0; 0 0 0 0];
LB = [ 0 0 0 25; 0 0 0 28; 0 0 0 25; 25 28 25 0];
Now I need to build the matrix L like;
L= [LA(2,1)+LB(1,4) (-LA(1,2)) 0 (-(LB(1,4));
(-LA(2,1)) LA(2,1)+LA(2,3)+LB(2,4) (-LA(2,3)) (-LB(2,4));
0 (-LA(3,2)) LA(3,2)+LB(3,4) (-LB(3,4));
(-LB(4,1)) (-LB(4,2)) (-LB(4,3)) 0];
or else like this also fine:
L= [LA(1,2)+LB(4,1) (-LA(2,1)) 0 (-(LB(4,1));
(-LA(1,2)) LA(1,2)+LA(3,2)+LB(4,2) (-LA(3,2)) (-LB(4,2));
0 (-LA(2,3)) LA(2,3)+LB(4,3) (-LB(4,3));
(-LB(1,4)) (-LB(2,4)) (-LB(3,4)) 0];
May be it would be possible using for-loop. It is just sample model, If i change the martices dimensions, Matrix should be built automatically, that's why for-loop would be better option!
If you have any suggestions and your answers are most weclomed and appreciated as well
4 comentarios
Jan
el 5 de Jun. de 2019
What's wrong with this code?
L= [LA(1,2)+LB(4,1), -LA(2,1), 0, -LB(4,1); ...
-LA(1,2), LA(1,2)+LA(3,2)+LB(4,2), -LA(3,2), -LB(4,2); ...
0, -LA(2,3)), LA(2,3)+LB(4,3), -LB(4,3); ...
-LB(1,4), -LB(2,4), -LB(3,4), 0];
Looks nice, so why do you want a loop?
surendra kumar Aralapura mariyappa
el 5 de Jun. de 2019
Jan
el 5 de Jun. de 2019
@surendra: You provide two definitions, in one the first element is LA(2,1)+LB(1,4), in the other it is LA(1,2)+LB(4,1). I cannot guess which one is wanted or what you want, if the dimensions of LA and LB are changed. Without giving a general definition how the output L is created, we cannot suggest the corresponding code.
surendra kumar Aralapura mariyappa
el 5 de Jun. de 2019
Editada: surendra kumar Aralapura mariyappa
el 5 de Jun. de 2019
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!