Bessel Equation VPASolve for the order
5 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
I am trying to solve a simple equation like
syms E
eqn1 = besselk(E,3)==5
vpasolve(eqn1,E)
for the variable E. But the problem I encounter is "Error using mupadengine/feval_internal. Unable to differentiate the equation."
Does anyone know an alternative way to solve this using vpasolve?
Thanks.
0 件のコメント
採用された回答
Torsten
2023 年 1 月 30 日
nu = 0:0.1:7;
B = besselk(nu,3)-5;
plot(nu,B)
fun = @(nu)besselk(nu,3)-5;
nu = fzero(fun,[6 7])
2 件のコメント
Torsten
2023 年 1 月 31 日
I should have been more clear in my question, which I edited now. I was wondering if it was still possible to solve such an equation using vpasolve.
No. That's why I used fzero (or fsolve).
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Bessel functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!