How do I input this into matlab as a numeric matrix?
Show older comments

I'm trying to find the eigenfrequencies of clamped-free annular plates. When using the symbolic toolbox the output eigenvalues do not match my comsol-made FE values, so I'm trying to figure out which is wrong. Any help would be much appreciated!
Answers (1)
Steven Lord
on 14 Jul 2021
0 votes
Assuming you have numeric values for α, λ, and ν and assuming J, Y, I, and K are referring to the various Bessel functions see the besselj, bessely, besseli, and besselk functions.
3 Comments
Eloise Kalavsky
on 14 Jul 2021
Like this? Seems reasonable to me unless there's some context from the previous sections of that chapter that I'm missing.
A = [besseli(1, 2) besselk(1, 2); besselj(1, 2), bessely(1, 2)]
Eloise Kalavsky
on 14 Jul 2021
Categories
Find more on Linear Algebra 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!