Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Matlab では、第 1 種およびゼロ次のベッセル関数がaどこJ0(ax)=0にあり、既知のベクトルであるかをどのように見つけますか?J0x
a
J0(ax)=0
J0
x
aベクトルとしてどのように見つけることができますか?
x ベクトルが大きくない場合、おそらくこの非効率的な方法でうまくいくでしょうか?
syms a; for i = 1:length(x) rt(i) = solve(besselj(0,a*x(i)),a); end avec = double(rt);