フィルターのクリア

Solve equation with bessel function of first kind

1 回表示 (過去 30 日間)
Luigi Stragapede
Luigi Stragapede 2020 年 5 月 8 日
回答済み: Ameer Hamza 2020 年 5 月 8 日
I need to solve in matlab this equation in order to find all the alfak that satisfy this equation:
where:
-Jnp is the bessel function of the first kind and order n*p;
-p=10;
-R3=90*10e-3;
-n is an odd positive integer.

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 5 月 8 日
Download this package from FEX: https://www.mathworks.com/matlabcentral/fileexchange/48403-bessel-zero-solver and then run the following code. You will need to specify the number of roots you want
n = 2;
p = 10;
R3 = 90*10e-3;
num_roots = 10;
bessel_z = besselzero(n*p, num_roots);
alpha_k = bessel_z/R3;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBessel functions についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by