Determinant of stiffness matrix is shown as 'Inf
5 views (last 30 days)
Show older comments
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 Comment
Steven Lord
on 29 May 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.
Answers (0)
See Also
Categories
Find more on Symbolic Math Toolbox 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!