Gistlib Logo

gistlib

. a 4x4 stiffness matrix 𝑲 is given as: 𝑲 = [12 −4 −2 0 −4 10 −3 1 −2 −3 5 −1 0 1 −1 6 ]find the determinant of the matrix 𝑲. in matlab

main.m
K = [12, -4, -2, 0; -4, 10, -3, 1; -2, -3, 5, -1; 0, 1, -1, 6];
detK = det(K);
detK
84 chars
4 lines

similar matlab code snippets

find rref for matrix a = [1 2 3 4 ; 2 3 4 5 ; 3 4 5 6; 1 2 0 1]; b = [0 0 0 0]'; in matlab
pseudoinverse method to solve overdetermined system of equations in matlab
boost matrix in matlab
given three equations and four variables, solve the system in ax = b form in matlab
rref of an augmented matrix in matlab
compute the rank of a matrix in matlab
calculate hessian normal form in matlab
hesse normal form in matlab
gaussian elimination in matlab
how to calculate the svd decomposition of a matrix in matlab

related categories

matlab
linear-algebra

gistlibby LogSnag