the global stiffness of two 4x4 matrices of truss
Show older comments
How do I make a code to assemble these two 4x4 matrices to get the 6x6 global stiffness matric as shown?
clear all;
clc;
K1=[1 1 -1 -1;
1 1 -1 -1;
-1 -1 1 1;
-1 -1 1 1];
K2=[1 -1 -1 1;
-1 1 1 -1;
-1 1 1 -1;
1 -1 -1 1];
%here are the two matrices

Accepted Answer
More Answers (0)
Categories
Find more on Structural Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!