Determinant of stiffness matrix is shown as 'Inf
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i calculated the combined stiffness matrix of a plate element with rectangular finite element. while the displaying the determinant combined stiffness matrix, it says "Inf". the combined matrix is a square matrix (i have checked for the error) and could not find any . Can anyone help on this issue?
1 comentario
Steven Lord
el 29 de Mayo de 2020
How are you planning to use the determinant information? If you're trying to use it to determine if the matrix is singular, don't.
A = eye(500);
det(A) % A is non-singular, obviously
B = 0.1*A;
det(B) % but B is? Underflow.
C = 10*A;
det(C) % Overflow.
Use the condition number if you're trying to determine if a matrix is well-conditioned.
Respuestas (0)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!