A 5-coupled mass-spring-damper network constitutes a 10th-order system. If you are referring to the 'frequency equation' as the Laplace transfer function, we can utilize the 'charpoly' and 'tf' functions. Additionally, the 'damp()' command can provide you with information about the system's natural frequencies.
Update: Check if you want to find the natural frequencies of the mass-damper-spring system using this approach:
lambda = eig(M\K)
lambda =
2.2793 + 0.0000i
2.2793 - 0.0000i
1.7413 + 0.0000i
0.3325 + 0.0000i
0.3325 + 0.0000i
omega = sqrt(lambda)
omega =
1.5097 + 0.0000i
1.5097 - 0.0000i
1.3196 + 0.0000i
0.5767 + 0.0000i
0.5767 + 0.0000i