a 4x4 stiffness matrix 𝑲 is given as: 𝑲 = [12 −4 −2 0 −4 10 −3 1 −2 −3 5 −1 0 1 −1 6 ]delete the third row and second column from the matrix 𝑲. in matlab

main.m
K = [12, -4, -2, 0; -4, 10, -3, 1; -2, -3, 5, -1; 0, 1, -1, 6];
K_new = K;
K_new(3, :) = [];
K_new(:, 2) = [];
disp(K_new);
124 chars
6 lines

related categories

gistlibby LogSnag